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:
9595 - name : Setup LLVM
9696 if : ${{ startsWith(matrix.os, 'ubuntu') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
9797 run : |
98+ apt-get install -y clang clang++
9899 apt-get install -y lsb-release wget software-properties-common gnupg
99100 wget https://apt.llvm.org/llvm.sh
100101 chmod +x llvm.sh
101102 ./llvm.sh 18 # install LLVM version 18
102103 update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-18 18
103104 update-alternatives --install /usr/bin/clang clang /usr/bin/clang-18 18
104105 update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-18 18
106+ clang --version
107+ clang++ --version
105108 - name : Setup Python
106109 if : ${{ startsWith(matrix.os, 'ubuntu') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
107110 run : |
You can’t perform that action at this time.
0 commit comments