We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f3017 commit 9f8489eCopy full SHA for 9f8489e
1 file changed
.github/workflows/ci.yml
@@ -109,15 +109,19 @@ jobs:
109
- name: setup
110
run: |
111
pacman --needed --noconfirm --noprogressbar -S -u -y \
112
- bazel \
113
ca-certificates \
114
gcc \
115
git \
116
python \
+ wget \
117
which
118
rm -rf \
119
/var/cache/pacman/pkg/* \
120
/var/lib/pacman/sync/*
121
+ wget -qO /usr/local/bin/bazelisk \
122
+ https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64
123
+ chmod +x /usr/local/bin/bazelisk
124
+ ln -s /usr/local/bin/bazelisk /usr/local/bin/bazel
125
shell: bash
126
- name: checkout
127
uses: actions/checkout@v6
0 commit comments