Skip to content

Commit 6b6bef7

Browse files
committed
Fix Github Action
1 parent 9a2985d commit 6b6bef7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/bazel.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,17 @@ jobs:
1414
os: [ubuntu-latest, macos-latest]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: bazel-contrib/setup-bazel@0.15.0
1919
with:
2020
bazelisk-cache: true
2121
disk-cache: ${{ github.workflow }}-${{ matrix.os }}
2222
repository-cache: true
23-
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
2427
- name: Build with Bazel
2528
run: bazel build --test_output=errors //...
26-
2729
- name: Test with Bazel
2830
run: bazel test --test_output=errors //...

0 commit comments

Comments
 (0)