We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 254b553 commit 29351fcCopy full SHA for 29351fc
.github/workflows/reusable-ubuntu.yml
@@ -39,6 +39,13 @@ jobs:
39
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
40
- name: Install dependencies
41
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
49
- name: Configure OpenSSL env vars
50
run: |
51
echo "MULTISSL_DIR=${GITHUB_WORKSPACE}/multissl" >> "$GITHUB_ENV"
0 commit comments