There was an error while loading. Please reload this page.
1 parent 683a6b2 commit 753e338Copy full SHA for 753e338
1 file changed
.github/workflows/reusable-ubuntu.yml
@@ -47,7 +47,7 @@ jobs:
47
- name: Install dependencies
48
run: sudo ./.github/workflows/posix-deps-apt.sh
49
- name: Install Clang and BOLT
50
- if: ${{ fromJSON(inputs.bolt-optimizations) }}
+ if: fromJSON(inputs.bolt-optimizations)
51
run: |
52
# On ubuntu-26.04 image, LLVM is LLVM-21 by default
53
sudo apt-get install --no-install-recommends bolt-21
@@ -91,7 +91,7 @@ jobs:
91
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
92
${{ fromJSON(inputs.bolt-optimizations) && '--enable-bolt' || '' }}
93
- name: Build CPython out-of-tree
94
- if: ${{ inputs.free-threading }}
+ if: inputs.free-threading
95
working-directory: ${{ env.CPYTHON_BUILDDIR }}
96
run: make -j
97
- name: Build CPython out-of-tree (for compiler warning check)
0 commit comments