mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
17 lines
543 B
Bash
17 lines
543 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-bazel.sh
|
|
## Desc: Install Bazel and Bazelisk (A user-friendly launcher for Bazel)
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# Install bazelisk
|
|
npm install -g @bazel/bazelisk
|
|
|
|
# run bazelisk once in order to install /usr/local/bin/bazel binary
|
|
sudo -u $SUDO_USER bazel version
|
|
|
|
invoke_tests "Tools" "Bazel"
|