Skip to content

Commit 850d529

Browse files
committed
fix: customize manylinux for aarch64
1 parent 8fd677c commit 850d529

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/pypi.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,22 @@ jobs:
2121
platform:
2222
- runner: ubuntu-latest
2323
target: x86_64
24+
manylinux: auto
2425
- runner: ubuntu-latest
2526
target: x86
27+
manylinux: auto
2628
- runner: ubuntu-latest
2729
target: aarch64
30+
manylinux: "2_28"
2831
- runner: ubuntu-latest
2932
target: armv7
33+
manylinux: auto
3034
- runner: ubuntu-latest
3135
target: s390x
36+
manylinux: auto
3237
- runner: ubuntu-latest
3338
target: ppc64le
39+
manylinux: auto
3440
steps:
3541
- uses: actions/checkout@v4
3642
- uses: actions/setup-python@v5
@@ -42,7 +48,7 @@ jobs:
4248
target: ${{ matrix.platform.target }}
4349
args: --release --out dist --find-interpreter
4450
sccache: "true"
45-
manylinux: auto
51+
manylinux: ${{ matrix.platform.manylinux }}
4652
- name: Upload wheels
4753
uses: actions/upload-artifact@v4
4854
with:

0 commit comments

Comments
 (0)