Skip to content

Commit b653e78

Browse files
committed
fix(ci): LLVM apt repo
1 parent 5729e80 commit b653e78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ jobs:
161161
run: |
162162
wget https://apt.llvm.org/llvm.sh
163163
chmod +x llvm.sh
164-
for _clang_version in {15..21}; do
164+
# Ubuntu 24.04 officially packages LLVM 15 and 16
165+
for _clang_version in {17..21}; do
165166
sudo ./llvm.sh $_clang_version
166167
done
167168
sudo apt update

0 commit comments

Comments
 (0)