mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
10 lines
387 B
PowerShell
10 lines
387 B
PowerShell
################################################################################
|
|
## File: Install-Bazel.ps1
|
|
## Desc: Install Bazel and Bazelisk (A user-friendly launcher for Bazel)
|
|
################################################################################
|
|
|
|
Choco-Install -PackageName bazel
|
|
|
|
npm install -g @bazel/bazelisk
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Bazel" |