|
6 | 6 | runs-on: ${{ matrix.os }} |
7 | 7 | strategy: |
8 | 8 | matrix: |
9 | | - include: |
10 | | - # - os: ubuntu-latest |
11 | | - # cibw_archs: "native" |
12 | | - - os: ubuntu-latest |
13 | | - cibw_archs: "aarch64" |
14 | | - # - os: windows-latest |
15 | | - # cibw_archs: "native ARM64" |
16 | | - # - os: macos-latest |
17 | | - # cibw_archs: "native arm64" |
| 9 | + # macos-13 is an intel runner, macos-14 is apple silicon |
| 10 | + os: [macos-14] |
18 | 11 |
|
19 | 12 | steps: |
20 | | - - name: Set up QEMU |
21 | | - if: matrix.cibw_archs == 'aarch64' |
22 | | - uses: docker/setup-qemu-action@v2 |
23 | | - with: |
24 | | - platforms: arm64 |
25 | | - - uses: actions/checkout@v3 |
| 13 | + - uses: actions/checkout@v4 |
| 14 | + |
26 | 15 | - name: Build wheels |
27 | 16 | |
28 | | - env: |
29 | | - CIBW_ARCHS: ${{ matrix.cibw_archs }} |
30 | | - CIBW_SKIP: "pp*" |
31 | | - CIBW_TEST_REQUIRES: pytest |
32 | | - CIBW_TEST_COMMAND: pytest {package} |
33 | | - - uses: actions/upload-artifact@v3 |
34 | | - with: |
35 | | - path: ./wheelhouse/*.whl |
| 17 | +# jobs: |
| 18 | +# build_wheels: |
| 19 | +# name: Build wheels on ${{ matrix.os }} |
| 20 | +# runs-on: ${{ matrix.os }} |
| 21 | +# strategy: |
| 22 | +# matrix: |
| 23 | +# include: |
| 24 | +# # - os: ubuntu-latest |
| 25 | +# # cibw_archs: "native" |
| 26 | +# - os: ubuntu-latest |
| 27 | +# cibw_archs: "aarch64" |
| 28 | +# # - os: windows-latest |
| 29 | +# # cibw_archs: "native ARM64" |
| 30 | +# # - os: macos-latest |
| 31 | +# # cibw_archs: "native arm64" |
| 32 | + |
| 33 | +# steps: |
| 34 | +# - name: Set up QEMU |
| 35 | +# if: matrix.cibw_archs == 'aarch64' |
| 36 | +# uses: docker/setup-qemu-action@v2 |
| 37 | +# with: |
| 38 | +# platforms: arm64 |
| 39 | +# - uses: actions/checkout@v3 |
| 40 | +# - name: Build wheels |
| 41 | + |
| 42 | +# env: |
| 43 | +# CIBW_ARCHS: ${{ matrix.cibw_archs }} |
| 44 | +# CIBW_SKIP: "pp*" |
| 45 | +# CIBW_TEST_REQUIRES: pytest |
| 46 | +# CIBW_TEST_COMMAND: pytest {package} |
| 47 | +# - uses: actions/upload-artifact@v3 |
| 48 | +# with: |
| 49 | +# path: ./wheelhouse/*.whl |
0 commit comments