Skip to content

Commit 63865e0

Browse files
committed
Installing LLVM
1 parent 018a6e0 commit 63865e0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ jobs:
2222
with:
2323
fetch-depth: 0
2424

25+
- name: Install explicit LLVM toolchain
26+
shell: bash
27+
if: ${{ inputs.llvm-version != '' }}
28+
run: |
29+
wget https://apt.llvm.org/llvm.sh
30+
chmod +x llvm.sh
31+
(yes "" || true) | sudo ./llvm.sh 19
32+
2533
- name: Show clang version
2634
run: clang --version
2735

0 commit comments

Comments
 (0)