Skip to content

Commit b29983b

Browse files
committed
ci: fix setup step in llvm linux build
1 parent c9172a2 commit b29983b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build-llvm-linux.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ jobs:
3030
repository: llvm/llvm-project
3131
ref: ${{ env.LLVM_REF }}
3232
fetch-depth: 2
33-
- name: install llvm-19
33+
- name: install build tools
3434
id: setup
35-
run: sudo apt install clang-19 llvm-19-linker-tools
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install clang-19 llvm-19-linker-tools
3638
- name: Configure LLVM
3739
if: steps.cache.outputs.cache-hit != 'true'
3840
shell: bash

0 commit comments

Comments
 (0)