Skip to content

Commit

Permalink
ci(py): Add build for aarch64-apple-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
Waelwindows committed Feb 4, 2023
1 parent 7931d96 commit 9a44f50
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,30 @@ jobs:
with:
name: wheels
path: dist
macos-aarch64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
architecture: x64
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
default: true
- name: Build wheels - ARM
uses: messense/maturin-action@v1
with:
target: "aarch64-apple-darwin"
args: --release --out dist --no-sdist --cargo-extra-args="--all-features"
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist

windows:
runs-on: windows-latest
Expand Down

0 comments on commit 9a44f50

Please sign in to comment.