Skip to content

Commit

Permalink
fix: customize manylinux for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Jan 8, 2025
1 parent 8fd677c commit 850d529
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,22 @@ jobs:
platform:
- runner: ubuntu-latest
target: x86_64
manylinux: auto
- runner: ubuntu-latest
target: x86
manylinux: auto
- runner: ubuntu-latest
target: aarch64
manylinux: "2_28"
- runner: ubuntu-latest
target: armv7
manylinux: auto
- runner: ubuntu-latest
target: s390x
manylinux: auto
- runner: ubuntu-latest
target: ppc64le
manylinux: auto
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -42,7 +48,7 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: "true"
manylinux: auto
manylinux: ${{ matrix.platform.manylinux }}
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 850d529

Please sign in to comment.