Skip to content

Commit 753e338

Browse files
committed
Remove some other unnecessary if: ${{}} wrapping
1 parent 683a6b2 commit 753e338

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/reusable-ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install dependencies
4848
run: sudo ./.github/workflows/posix-deps-apt.sh
4949
- name: Install Clang and BOLT
50-
if: ${{ fromJSON(inputs.bolt-optimizations) }}
50+
if: fromJSON(inputs.bolt-optimizations)
5151
run: |
5252
# On ubuntu-26.04 image, LLVM is LLVM-21 by default
5353
sudo apt-get install --no-install-recommends bolt-21
@@ -91,7 +91,7 @@ jobs:
9191
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
9292
${{ fromJSON(inputs.bolt-optimizations) && '--enable-bolt' || '' }}
9393
- name: Build CPython out-of-tree
94-
if: ${{ inputs.free-threading }}
94+
if: inputs.free-threading
9595
working-directory: ${{ env.CPYTHON_BUILDDIR }}
9696
run: make -j
9797
- name: Build CPython out-of-tree (for compiler warning check)

0 commit comments

Comments
 (0)