We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254b553 commit d8c3be7Copy full SHA for d8c3be7
.github/workflows/reusable-ubuntu.yml
@@ -76,6 +76,13 @@ jobs:
76
with:
77
path: ${{ env.CPYTHON_BUILDDIR }}/config.cache
78
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }}
79
+ - name: Install Clang
80
+ if: ${{ fromJSON(inputs.bolt-optimizations) }}
81
+ run: |
82
+ wget https://apt.llvm.org/llvm.sh
83
+ chmod +x llvm.sh
84
+ sudo ./llvm.sh 19
85
+ echo PATH="$(llvm-config-19 --bindir):$PATH" >> $GITHUB_ENV
86
- name: Configure CPython out-of-tree
87
working-directory: ${{ env.CPYTHON_BUILDDIR }}
88
run: >-
0 commit comments