Skip to content

Commit 309388b

Browse files
gha: change macos-15-intel to macos-26-intel
1 parent 9c84da9 commit 309388b

5 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/actionlint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
self-hosted-runner:
22
# Pending https://github.com/rhysd/actionlint/pull/615
3-
labels: ["windows-2025-vs2026"]
3+
# https://github.com/rhysd/actionlint/pull/629
4+
labels: ["windows-2025-vs2026", "macos-26-intel"]
45

56
config-variables: null
67

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,16 +200,16 @@ jobs:
200200
strategy:
201201
fail-fast: false
202202
matrix:
203-
# macos-26 is Apple Silicon, macos-15-intel is Intel.
204-
# macos-15-intel only runs tests against the GIL-enabled CPython.
203+
# macos-26 is Apple Silicon, macos-26-intel is Intel.
204+
# macos-26-intel only runs tests against the GIL-enabled CPython.
205205
os:
206206
- macos-26
207-
- macos-15-intel
207+
- macos-26-intel
208208
free-threading:
209209
- false
210210
- true
211211
exclude:
212-
- os: macos-15-intel
212+
- os: macos-26-intel
213213
free-threading: true
214214
uses: ./.github/workflows/reusable-macos.yml
215215
with:

.github/workflows/jit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
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
104104
runner: macos-26
105105
steps:

.github/workflows/reusable-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/tail-call.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
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
7272
runner: macos-26
7373
steps:

0 commit comments

Comments
 (0)