Skip to content

Commit acade44

Browse files
committed
fix ci
1 parent a6b7696 commit acade44

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/test-and-publish.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)