File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2323
2424 packages=( \
2525 git-core cmake g++ \
26- libcurl4 libzstd-dev \
26+ libcurl4 libxml2-dev libzstd-dev \
2727 curl gdb p7zip-full tzdata unzip zip python3-pip \
2828 )
2929 if [[ $arch == x86_64 ]]; then
@@ -37,26 +37,26 @@ runs:
3737 # Make sure to link libzstd statically
3838 sudo rm /usr/lib/$arch-linux-gnu/libzstd.so
3939
40- - name : ' Linux: Install clang 20 from apt.llvm.org'
40+ - name : ' Linux: Install clang 19 from apt.llvm.org'
4141 if : runner.os == 'Linux'
4242 shell : bash
4343 run : |
4444 set -eux
4545 cd ..
4646 curl -fL --retry 3 --max-time 30 -O https://apt.llvm.org/llvm.sh
47- sudo bash llvm.sh 20
47+ sudo bash llvm.sh 19
4848 for tool in clang clang++ ld.lld; do
49- sudo ln -sf $tool-20 /usr/bin/$tool
49+ sudo ln -sf $tool-19 /usr/bin/$tool
5050 $tool --version
5151 done
52- - name : ' Windows: Install clang v20 .1.3 from GitHub'
52+ - name : ' Windows: Install clang v19 .1.3 from GitHub'
5353 if : runner.os == 'Windows'
5454 shell : bash
5555 run : |
5656 set -eux
5757 cd ..
5858 curl -fL --retry 3 --max-time 300 -o clang.exe \
59- https://github.com/llvm/llvm-project/releases/download/llvmorg-20 .1.3/LLVM-20 .1.3-win64.exe
59+ https://github.com/llvm/llvm-project/releases/download/llvmorg-19 .1.3/LLVM-19 .1.3-win64.exe
6060 ./clang.exe //S # double-slash for bash
6161 rm clang.exe
6262 # C:\Program Files\LLVM\bin should already be in PATH
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ concurrency:
1414 cancel-in-progress : true
1515
1616env :
17- LLVM_VERSION : a905655f
17+ LLVM_VERSION : 19.1.7
1818
1919jobs :
2020 build-native :
You can’t perform that action at this time.
0 commit comments