We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81be0ba commit f3e8bfdCopy full SHA for f3e8bfd
.github/workflows/ci.yml
@@ -37,14 +37,21 @@ jobs:
37
38
steps:
39
- uses: actions/checkout@v4
40
- - name: Build wheels
+ - name: Build wheels - manylinux
41
uses: PyO3/maturin-action@v1
42
with:
43
target: ${{ matrix.target }}
44
args: --release --out dist
45
sccache: 'true'
46
manylinux: auto
47
-
+ - name: Build wheels - musllinux
48
+ uses: PyO3/maturin-action@v1
49
+ if: ${{ matrix.target != 's390x' && matrix.target != 'ppc64le' }}
50
+ with:
51
+ target: ${{ matrix.target }}
52
+ args: --release --out dist
53
+ sccache: 'true'
54
+ manylinux: musllinux_1_1
55
- name: Upload wheels
56
uses: actions/upload-artifact@v4
57
0 commit comments