Skip to content

Commit

Permalink
Test on macOS 14 (arm64 runner)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelm committed Jun 16, 2024
1 parent ed2b606 commit c0136e7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

wheels:
if: github.event_name == 'push' && github.ref_type == 'tag'
#if: github.event_name == 'push' && github.ref_type == 'tag'
needs: [lint, build, test]
timeout-minutes: 20
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-12]
os: [ubuntu-20.04, windows-2019, macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -80,8 +80,9 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD: "cp*-manylinux_x86_64 cp3*-win_amd64 cp3*-macosx_x86_64"
CIBW_BUILD: "cp*-manylinux_x86_64 cp3*-win_amd64 cp3*-macosx_x86_64 cp3*-macosx_arm64"
CIBW_SKIP: "cp37-*"
#CIBW_TEST_SKIP: "cp38-macosx_*:arm64"
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
Expand Down

0 comments on commit c0136e7

Please sign in to comment.