Skip to content

Commit eb693c2

Browse files
committed
fix(ci): keep macos-14 apple silicon runners
1 parent eaf336a commit eb693c2

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/build-and-release.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
# Use explicit Apple Silicon and Intel macOS runners so each job
15-
# produces a distinct wheel artifact.
16-
os: [ubuntu-22.04, windows-2022, macos-15, macos-15-intel]
14+
# Keep the Apple Silicon release build on macos-14 and use an explicit
15+
# Intel runner for the x86_64 wheel so each macOS job produces a
16+
# distinct artifact.
17+
os: [ubuntu-22.04, windows-2022, macos-14, macos-15-intel]
1718

1819
steps:
1920
- uses: actions/checkout@v4

.github/workflows/build-wheels-metal.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ permissions:
77

88
jobs:
99
build_wheels:
10-
name: Build wheels on macos-15
11-
runs-on: macos-15
10+
name: Build wheels on macos-14
11+
runs-on: macos-14
1212

1313
steps:
1414
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)