Skip to content

Commit

Permalink
try aarch64 build for manylinux (#2684)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Feb 19, 2022
1 parent 9c82106 commit a40dd98
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/create-py-release-manylinux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish wheel
- name: publish x86_64
uses: docker://konstin2/maturin:latest
env:
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
with:
entrypoint: /bin/bash
args: .github/deploy_manylinux.sh
# needed for docker on apple m1
- name: publish aarch64
uses: messense/maturin-action@main
env:
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
with:
rust-toolchain: nightly-2022-01-01
manylinux: '2_24'
target: aarch64-unknown-linux-gnu
maturin-version: 0.12.1
command: publish
args: -m py-polars/Cargo.toml --no-sdist -o wheels -i python -u ritchie46

0 comments on commit a40dd98

Please sign in to comment.