Skip to content

Commit 29351fc

Browse files
committed
Install Clang
Copied from the JIT workflow
1 parent 254b553 commit 29351fc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/reusable-ubuntu.yml

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ jobs:
3939
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
4040
- name: Install dependencies
4141
run: sudo ./.github/workflows/posix-deps-apt.sh
42+
- name: Install Clang
43+
if: ${{ fromJSON(inputs.bolt-optimizations) }}
44+
run: |
45+
wget https://apt.llvm.org/llvm.sh
46+
chmod +x llvm.sh
47+
sudo ./llvm.sh 19
48+
echo PATH="$(llvm-config-19 --bindir):$PATH" >> $GITHUB_ENV
4249
- name: Configure OpenSSL env vars
4350
run: |
4451
echo "MULTISSL_DIR=${GITHUB_WORKSPACE}/multissl" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)