Skip to content

Commit dca21f0

Browse files
committed
Use macos-14 for CPython tests.
1 parent ca018fe commit dca21f0

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
- briefcase-run-args:
137137

138138
- platform: iOS
139-
briefcase-run-args: ' -d "iPhone 16e"::iOS 18.5"'
139+
briefcase-run-args: ' -d "iPhone 16e::iOS 18.5"'
140140

141141
steps:
142142
- uses: actions/checkout@v5
@@ -184,7 +184,8 @@ jobs:
184184

185185
cpython-testbed:
186186
name: CPython testbed (${{ matrix.platform }})
187-
runs-on: macOS-15
187+
# For now, CPython testbed can't run on macos-15: https://github.com/actions/runner-images/issues/12777
188+
runs-on: macOS-14
188189
needs: [ config, build ]
189190
strategy:
190191
fail-fast: false
@@ -197,15 +198,6 @@ jobs:
197198
steps:
198199
- uses: actions/checkout@v5
199200

200-
- name: Set up Xcode
201-
# GitHub recommends explicitly selecting the desired Xcode version:
202-
# https://github.com/actions/runner-images/issues/12541#issuecomment-3083850140
203-
# This became a necessity as a result of
204-
# https://github.com/actions/runner-images/issues/12541 and
205-
# https://github.com/actions/runner-images/issues/12751.
206-
run: |
207-
sudo xcode-select --switch /Applications/Xcode_16.4.app
208-
209201
- name: Get build artifact
210202
uses: actions/[email protected]
211203
with:
@@ -239,7 +231,7 @@ jobs:
239231
# - test_os as a test of system library calls
240232
# - test_bz2 as a simple test of third party libraries
241233
# - test_ctypes as a test of FFI
242-
python -m testbed run ${{ matrix.testbed-args }} -- test --single-process --rerun -W test_builtin test_grammar test_os test_bz2 test_ctypes
234+
python -m testbed run -- test --single-process --rerun -W test_builtin test_grammar test_os test_bz2 test_ctypes
243235
244236
crossenv-test:
245237
name: Cross-platform env test (${{ matrix.multiarch }})

0 commit comments

Comments
 (0)