mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
* Apply code style rules to Windows scripts * Fix typo * Fix configure-toolset script * Fix parameters in Msys2 installation script * Improve log readability * Remove broken exit code validation
14 lines
471 B
PowerShell
14 lines
471 B
PowerShell
################################################################################
|
|
## File: Install-Bazel.ps1
|
|
## Desc: Install Bazel and Bazelisk (A user-friendly launcher for Bazel)
|
|
################################################################################
|
|
|
|
Install-ChocoPackage bazel
|
|
|
|
npm install -g @bazel/bazelisk
|
|
if ($LASTEXITCODE -ne 0) {
|
|
throw "Command 'npm install -g @bazel/bazelisk' failed"
|
|
}
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Bazel"
|