Files
runner-images/images/windows/scripts/build/Install-Bazel.ps1
T

14 lines
471 B
PowerShell
Raw Normal View History

################################################################################
## File: Install-Bazel.ps1
## Desc: Install Bazel and Bazelisk (A user-friendly launcher for Bazel)
################################################################################
Install-ChocoPackage bazel
npm install -g @bazel/bazelisk
2023-12-04 10:50:53 +01:00
if ($LASTEXITCODE -ne 0) {
throw "Command 'npm install -g @bazel/bazelisk' failed"
2023-12-04 10:50:53 +01:00
}
Invoke-PesterTests -TestFile "Tools" -TestName "Bazel"