Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use GHA M1 runners for macOS builds #117

Merged
merged 2 commits into from
Jan 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,12 @@ jobs:
build: ""
artifact_suffix: "windows_x86"
use_qemu: false
- os: macos-11
arch: "x86_64 universal2 arm64"
- os: macos-14
arch: "arm64 universal2 x86_64"
build: ""
artifact_suffix: "macos"
use_qemu: false


steps:
- uses: actions/checkout@v4
with:
Expand All @@ -95,6 +94,10 @@ jobs:
mingw-w64-${{matrix.mingw_env}}-toolchain
if: runner.os == 'Windows'

- name: Install ninja (macOS)
run: which ninja || brew install ninja
if: runner.os == 'macOS'

- name: Build wheels
uses: pypa/[email protected]
env:
Expand Down
Loading