Skip to content

Commit 3b0f67e

Browse files
committed
Don't need this checks.
1 parent ff79272 commit 3b0f67e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/reusable-ubuntu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,18 @@ jobs:
8080
--with-openssl="$OPENSSL_DIR"
8181
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
8282
- name: Build CPython out-of-tree
83-
if: ${{ inputs.free-threading || inputs.os != 'ubuntu-24.04-aarch64' }}
83+
if: ${{ inputs.free-threading }}
8484
working-directory: ${{ env.CPYTHON_BUILDDIR }}
8585
run: make -j
8686
- name: Build CPython out-of-tree (for compiler warning check)
87-
if: ${{ !inputs.free-threading && inputs.os == 'ubuntu-24.04-aarch64' }}
87+
if: ${{ !inputs.free-threading }}
8888
working-directory: ${{ env.CPYTHON_BUILDDIR }}
8989
run: set -o pipefail; make -j --output-sync 2>&1 | tee compiler_output_ubuntu.txt
9090
- name: Display build info
9191
working-directory: ${{ env.CPYTHON_BUILDDIR }}
9292
run: make pythoninfo
9393
- name: Check compiler warnings
94-
if: ${{ !inputs.free-threading && inputs.os == 'ubuntu-24.04-aarch64' }}
94+
if: ${{ !inputs.free-threading }}
9595
run: >-
9696
python Tools/build/check_warnings.py
9797
--compiler-output-file-path=${{ env.CPYTHON_BUILDDIR }}/compiler_output_ubuntu.txt

0 commit comments

Comments
 (0)