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 979f7fa commit f59b6f0Copy full SHA for f59b6f0
1 file changed
.github/workflows/ci.yml
@@ -52,6 +52,14 @@ jobs:
52
- name: Cache cargo artifacts
53
uses: Swatinem/rust-cache@v2
54
55
+ - name: Install LLVM 21 (llvm-backend lane only)
56
+ if: matrix.lane == 'llvm-backend'
57
+ run: |
58
+ wget -qO llvm.sh https://apt.llvm.org/llvm.sh
59
+ chmod +x llvm.sh
60
+ sudo ./llvm.sh 21 all
61
+ echo "LLVM_SYS_211_PREFIX=/usr/lib/llvm-21" >> "$GITHUB_ENV"
62
+
63
- name: Build zynml for selected backend lane
64
run: cargo check -p zynml ${{ matrix.cargo_features }}
65
0 commit comments