We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a030d74 commit d20db24Copy full SHA for d20db24
1 file changed
.github/workflows/test-and-publish.yaml
@@ -96,9 +96,10 @@ jobs:
96
if: ${{ startsWith(matrix.os, 'ubuntu') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
97
run: |
98
apt-get install -y lsb-release wget software-properties-common gnupg
99
- wget https://apt.llvm.org/llvm.sh
100
- chmod +x llvm.sh
101
- ./llvm.sh 18 # install LLVM version 18
+ echo "deb http://apt.llvm.org/$(lsb_release -cs)/ llvm-toolchain-$(lsb_release -cs) main" | tee -a /etc/apt/sources.list.d/llvm.list
+ echo "deb http://apt.llvm.org/$(lsb_release -cs)/ llvm-defaults main" | tee -a /etc/apt/sources.list.d/llvm.list
+ apt-get update -y
102
+ apt-get install -y llvm-defaults clang
103
- name: Setup Python
104
105
0 commit comments