File tree Expand file tree Collapse file tree 5 files changed +18
-13
lines changed
Expand file tree Collapse file tree 5 files changed +18
-13
lines changed Original file line number Diff line number Diff line change 1+ self-hosted-runner :
2+ # Pending release of actionlint > 1.7.11 for macos-26-intel support
3+ # https://github.com/rhysd/actionlint/pull/629
4+ labels : ["macos-26-intel"]
5+
16config-variables : null
27
38paths :
Original file line number Diff line number Diff line change @@ -198,16 +198,16 @@ jobs:
198198 strategy :
199199 fail-fast : false
200200 matrix :
201- # macos-14 is M1 , macos-15 -intel is Intel.
202- # macos-15 -intel only runs tests against the GIL-enabled CPython.
201+ # macos-26 is Apple Silicon , macos-26 -intel is Intel.
202+ # macos-26 -intel only runs tests against the GIL-enabled CPython.
203203 os :
204- - macos-14
205- - macos-15 -intel
204+ - macos-26
205+ - macos-26 -intel
206206 free-threading :
207207 - false
208208 - true
209209 exclude :
210- - os : macos-15 -intel
210+ - os : macos-26 -intel
211211 free-threading : true
212212 uses : ./.github/workflows/reusable-macos.yml
213213 with :
@@ -336,7 +336,7 @@ jobs:
336336 matrix :
337337 include :
338338 - arch : aarch64
339- runs-on : macos-14
339+ runs-on : macos-26
340340 - arch : x86_64
341341 runs-on : ubuntu-24.04
342342
Original file line number Diff line number Diff line change 9999 - false
100100 include :
101101 - target : x86_64-apple-darwin/clang
102- runner : macos-15 -intel
102+ runner : macos-26 -intel
103103 - target : aarch64-apple-darwin/clang
104- runner : macos-14
104+ runner : macos-26
105105 steps :
106106 - uses : actions/checkout@v6
107107 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-15 -intel' }}
55+ if : ${{ inputs.free-threading || inputs.os != 'macos-26 -intel' }}
5656 run : gmake -j8
5757 - name : Build CPython for compiler warning check
58- if : ${{ !inputs.free-threading && inputs.os == 'macos-15 -intel' }}
58+ if : ${{ !inputs.free-threading && inputs.os == 'macos-26 -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-15 -intel' }}
63+ if : ${{ !inputs.free-threading && inputs.os == 'macos-26 -intel' }}
6464 run : >-
6565 python3 Tools/build/check_warnings.py
6666 --compiler-output-file-path=compiler_output_macos.txt
Original file line number Diff line number Diff line change 6767 matrix :
6868 include :
6969 - target : x86_64-apple-darwin/clang
70- runner : macos-15 -intel
70+ runner : macos-26 -intel
7171 - target : aarch64-apple-darwin/clang
72- runner : macos-14
72+ runner : macos-26
7373 steps :
7474 - uses : actions/checkout@v6
7575 with :
You can’t perform that action at this time.
0 commit comments