Skip to content

Commit cdde1b0

Browse files
authored
Wheels CI hangs for MacOS Intel (#689)
- Fix wheels generation for MacOS Intel, which is hanging due to gha VM brownout: https://github.com/msgpack/msgpack-python/actions/runs/26874183762/job/79271522595 - Run tests on MacOS Intel and on Ubuntu ARM
1 parent 5eb57e1 commit cdde1b0

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
os: ["ubuntu-latest", "windows-latest", "windows-11-arm", "macos-latest"]
12+
os:
13+
- ubuntu-latest
14+
- ubuntu-24.04-arm
15+
- windows-latest
16+
- windows-11-arm
17+
- macos-15-intel
18+
- macos-latest
1319
py: ["3.15", "3.15t", "3.14", "3.14t", "3.13", "3.12", "3.11", "3.10"]
1420
exclude:
1521
- os: windows-11-arm

.github/workflows/wheel.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ jobs:
1111
build_wheels:
1212
strategy:
1313
matrix:
14-
# macos-13 is for intel
1514
include:
1615
- os: ubuntu-24.04
1716
- os: ubuntu-24.04-arm
1817
- os: windows-latest
1918
- os: windows-11-arm
20-
- os: macos-13
19+
- os: macos-15-intel
2120
- os: macos-latest
2221
- os: ubuntu-24.04
2322
cibw_archs: riscv64

0 commit comments

Comments
 (0)