Skip to content

Commit bc5cfa6

Browse files
committed
fix(ci): keep metal matrix on macos-14 and macos-15
1 parent eb693c2 commit bc5cfa6

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

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

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

88
jobs:
99
build_wheels:
10-
name: Build wheels on macos-14
11-
runs-on: macos-14
10+
name: Build wheels on ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
os: [macos-14, macos-15]
1215

1316
steps:
1417
- uses: actions/checkout@v4
@@ -43,6 +46,7 @@ jobs:
4346
output-dir: wheelhouse2
4447

4548
- uses: actions/upload-artifact@v4
49+
if: matrix.os == 'macos-14'
4650
with:
4751
name: wheels-mac
4852
path: ./wheelhouse2/*.whl

0 commit comments

Comments
 (0)