File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -206,16 +206,16 @@ jobs:
206206 strategy :
207207 fail-fast : false
208208 matrix :
209- # macos-26 is Apple Silicon, macos-26 -intel is Intel.
210- # macos-26 -intel only runs tests against the GIL-enabled CPython.
209+ # macos-26 is Apple Silicon, macos-15 -intel is Intel.
210+ # macos-15 -intel only runs tests against the GIL-enabled CPython.
211211 os :
212212 - macos-26
213- - macos-26 -intel
213+ - macos-15 -intel
214214 free-threading :
215215 - false
216216 - true
217217 exclude :
218- - os : macos-26 -intel
218+ - os : macos-15 -intel
219219 free-threading : true
220220 uses : ./.github/workflows/reusable-macos.yml
221221 with :
Original file line number Diff line number Diff line change @@ -52,15 +52,15 @@ jobs:
5252 --prefix=/opt/python-dev \
5353 --with-openssl="$(brew --prefix openssl@3.5)"
5454 - name : Build CPython
55- if : ${{ inputs.free-threading || inputs.os != 'macos-26 -intel' }}
55+ if : ${{ inputs.free-threading || inputs.os != 'macos-15 -intel' }}
5656 run : gmake -j8
5757 - name : Build CPython for compiler warning check
58- if : ${{ !inputs.free-threading && inputs.os == 'macos-26 -intel' }}
58+ if : ${{ !inputs.free-threading && inputs.os == 'macos-15 -intel' }}
5959 run : set -o pipefail; gmake -j8 --output-sync 2>&1 | tee compiler_output_macos.txt
6060 - name : Display build info
6161 run : make pythoninfo
6262 - name : Check compiler warnings
63- if : ${{ !inputs.free-threading && inputs.os == 'macos-26 -intel' }}
63+ if : ${{ !inputs.free-threading && inputs.os == 'macos-15 -intel' }}
6464 run : >-
6565 python3 Tools/build/check_warnings.py
6666 --compiler-output-file-path=compiler_output_macos.txt
You can’t perform that action at this time.
0 commit comments