diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index b59614d..3302b55 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -10,8 +10,6 @@ jobs: include: - os: ubuntu-latest target: x86_64 - - os: macos-latest - target: x86_64 steps: - name: checkout @@ -31,8 +29,22 @@ jobs: - name: build wheel uses: PyO3/maturin-action@v1 with: - target: ${{ matrix.target }} - args: --release --out dist + target: aarch64-apple-darwin + args: --zig --release --out dist + manylinux: auto + sccache: true + - name: build wheel (2) + uses: PyO3/maturin-action@v1 + with: + target: x86_64-apple-darwin + args: --zig --release --out dist + manylinux: auto + sccache: true + - name: build wheel (3) + uses: PyO3/maturin-action@v1 + with: + target: x86_64-unknown-linux-gnu + args: --zig --release --out dist manylinux: auto sccache: true - name: delocate wheel (macOS)