File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Release Builds
3
3
on : push
4
4
5
5
env :
6
- LLVM_VERSION : " 17.0.6 "
6
+ LLVM_VERSION : " 18.1.0 "
7
7
8
8
jobs :
9
9
linux :
@@ -21,18 +21,18 @@ jobs:
21
21
run :
22
22
shell : bash
23
23
steps :
24
- - name : Add llvm repo for clang 17 & install
24
+ - name : Add llvm repo for clang 18 & install
25
25
run : |
26
26
sudo wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
27
- sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main"
27
+ sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-18 main"
28
28
sudo apt update -yy
29
- sudo apt install -yy clang-17
29
+ sudo apt install -yy clang-18
30
30
- name : Set clang version
31
31
run : |
32
32
sudo update-alternatives --remove-all clang || echo "nothing to remove"
33
33
sudo update-alternatives --remove-all clang++ || echo "nothing to remove"
34
- sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-17 100
35
- sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-17 100
34
+ sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-18 100
35
+ sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-18 100
36
36
- uses : actions/checkout@v4
37
37
- name : Build script
38
38
run : ./build.sh
You can’t perform that action at this time.
0 commit comments