Skip to content

Commit 1d7ab1e

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

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/reusable-ubuntu.yml

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ 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+
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh 19
46+
apt-get install bolt-19
47+
echo PATH="$(llvm-config-19 --bindir):$PATH" >> $GITHUB_ENV
4248
- name: Configure OpenSSL env vars
4349
run: |
4450
echo "MULTISSL_DIR=${GITHUB_WORKSPACE}/multissl" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)