Skip to content

Commit 9a03636

Browse files
committed
fix(ci): install LLVM manually
1 parent 08c6c3c commit 9a03636

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/ci.yaml

+4-7
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,12 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Set up LLVM and Clang
21-
uses: KyleMayes/install-llvm-action@v2
22-
with:
23-
version: "17"
21+
run: |
22+
sudo apt-get update
23+
sudo apt-get install -y lld llvm llvm-dev clang
2424
2525
- name: Set up Zig
2626
uses: mlugg/setup-zig@v1
2727

2828
- name: Run `build`
29-
run: |
30-
zig build util_libs
31-
zig build exes
32-
zig build fmt
29+
run: zig build

0 commit comments

Comments
 (0)