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 4d8686eCopy full SHA for 4d8686e
.github/workflows/reusable-ubuntu.yml
@@ -76,6 +76,14 @@ 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
+ sudo apt-get update
83
+ sudo apt-get install ca-certificates
84
+ sudo update-ca-certificates
85
+ sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh 19
86
+ echo PATH="$(llvm-config-19 --bindir):$PATH" >> $GITHUB_ENV
87
- name: Configure CPython out-of-tree
88
working-directory: ${{ env.CPYTHON_BUILDDIR }}
89
run: >-
0 commit comments