Skip to content

Commit 9fd33af

Browse files
authored
Test premium Mac builders (#118672)
1 parent 2ba2c14 commit 9fd33af

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
with:
209209
config_hash: ${{ needs.check_source.outputs.config_hash }}
210210
# macos-14 is M1, macos-13 is Intel
211-
os-matrix: '["macos-14", "macos-13"]'
211+
os-matrix: '["macos-14-xlarge", "macos-13-large"]'
212212

213213
build_macos_free_threading:
214214
name: 'macOS (free-threading)'

.github/workflows/reusable-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
--prefix=/opt/python-dev \
5151
--with-openssl="$(brew --prefix [email protected])"
5252
- name: Build CPython
53-
run: make -j4
53+
run: make -j8
5454
- name: Display build info
5555
run: make pythoninfo
5656
- name: Tests

Lib/test/test_pyrepl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
# Optionally test pyrepl. This currently requires that the
1616
# 'curses' resource be given on the regrtest command line using the -u
1717
# option. Additionally, we need to attempt to import curses and readline.
18-
requires('curses')
19-
curses = import_module('curses')
20-
readline = import_module('readline')
18+
requires("curses")
19+
curses = import_module("curses")
20+
readline = import_module("readline")
2121

2222
from _pyrepl.console import Console, Event
2323
from _pyrepl.readline import ReadlineAlikeReader, ReadlineConfig

0 commit comments

Comments
 (0)