We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf5df5 commit c179d3aCopy full SHA for c179d3a
1 file changed
.github/workflows/test.yml
@@ -30,6 +30,18 @@ jobs:
30
cache-dependency-path: |
31
setup.py
32
33
+ - name: Install Bazel
34
+ run: |
35
+ mkdir -p ~/.local/bin
36
+ if [[ "${{ runner.os }}" == "Linux" ]]; then
37
+ wget --no-check-certificate -q https://github.com/bazelbuild/bazel/releases/download/${{ env.USE_BAZEL_VERSION }}/bazel-${{ env.USE_BAZEL_VERSION }}-linux-x86_64 -O ~/.local/bin/bazel
38
+ elif [[ "${{ runner.os }}" == "macOS" ]]; then
39
+ wget --no-check-certificate -q https://github.com/bazelbuild/bazel/releases/download/${{ env.USE_BAZEL_VERSION }}/bazel-${{ env.USE_BAZEL_VERSION }}-darwin-arm64 -O ~/.local/bin/bazel
40
+ fi
41
+ chmod +x ~/.local/bin/bazel
42
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
43
+ bazel --version
44
+
45
- name: Install dependencies
46
run: |
47
python -m pip install --upgrade pip
0 commit comments