We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb693c2 commit bc5cfa6Copy full SHA for bc5cfa6
1 file changed
.github/workflows/build-wheels-metal.yaml
@@ -7,8 +7,11 @@ permissions:
7
8
jobs:
9
build_wheels:
10
- name: Build wheels on macos-14
11
- runs-on: macos-14
+ name: Build wheels on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [macos-14, macos-15]
15
16
steps:
17
- uses: actions/checkout@v4
@@ -43,6 +46,7 @@ jobs:
43
46
output-dir: wheelhouse2
44
47
45
48
- uses: actions/upload-artifact@v4
49
+ if: matrix.os == 'macos-14'
50
with:
51
name: wheels-mac
52
path: ./wheelhouse2/*.whl
0 commit comments