File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -95,13 +95,16 @@ jobs:
95
95
- name : Setup LLVM
96
96
if : ${{ startsWith(matrix.os, 'ubuntu') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
97
97
run : |
98
+ apt-get install -y clang clang++
98
99
apt-get install -y lsb-release wget software-properties-common gnupg
99
100
wget https://apt.llvm.org/llvm.sh
100
101
chmod +x llvm.sh
101
102
./llvm.sh 18 # install LLVM version 18
102
103
update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-18 18
103
104
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-18 18
104
105
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-18 18
106
+ clang --version
107
+ clang++ --version
105
108
- name : Setup Python
106
109
if : ${{ startsWith(matrix.os, 'ubuntu') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
107
110
run : |
You can’t perform that action at this time.
0 commit comments