File tree 2 files changed +7
-7
lines changed 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 23
23
24
24
packages=( \
25
25
git-core cmake g++ \
26
- libcurl4 libzstd-dev \
26
+ libcurl4 libxml2-dev libzstd-dev \
27
27
curl gdb p7zip-full tzdata unzip zip python3-pip \
28
28
)
29
29
if [[ $arch == x86_64 ]]; then
@@ -37,26 +37,26 @@ runs:
37
37
# Make sure to link libzstd statically
38
38
sudo rm /usr/lib/$arch-linux-gnu/libzstd.so
39
39
40
- - name : ' Linux: Install clang 20 from apt.llvm.org'
40
+ - name : ' Linux: Install clang 19 from apt.llvm.org'
41
41
if : runner.os == 'Linux'
42
42
shell : bash
43
43
run : |
44
44
set -eux
45
45
cd ..
46
46
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
48
48
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
50
50
$tool --version
51
51
done
52
- - name : ' Windows: Install clang v20 .1.3 from GitHub'
52
+ - name : ' Windows: Install clang v19 .1.3 from GitHub'
53
53
if : runner.os == 'Windows'
54
54
shell : bash
55
55
run : |
56
56
set -eux
57
57
cd ..
58
58
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
60
60
./clang.exe //S # double-slash for bash
61
61
rm clang.exe
62
62
# 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:
14
14
cancel-in-progress : true
15
15
16
16
env :
17
- LLVM_VERSION : a905655f
17
+ LLVM_VERSION : 19.1.7
18
18
19
19
jobs :
20
20
build-native :
You can’t perform that action at this time.
0 commit comments