File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments