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 9a2985d commit 6b6bef7Copy full SHA for 6b6bef7
.github/workflows/bazel.yml
@@ -14,15 +14,17 @@ jobs:
14
os: [ubuntu-latest, macos-latest]
15
16
steps:
17
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
18
- uses: bazel-contrib/setup-bazel@0.15.0
19
with:
20
bazelisk-cache: true
21
disk-cache: ${{ github.workflow }}-${{ matrix.os }}
22
repository-cache: true
23
-
+ - if: matrix.os == 'ubuntu-latest'
24
+ run: |
25
+ sudo apt-get install -y lld
26
+ sudo update-alternatives --install /usr/bin/ld ld /usr/bin/ld.lld 100
27
- name: Build with Bazel
28
run: bazel build --test_output=errors //...
29
- name: Test with Bazel
30
run: bazel test --test_output=errors //...
0 commit comments