Skip to content

Commit 957dcec

Browse files
committed
Add more manylinux build architectures.
1 parent 70ccdd9 commit 957dcec

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,17 @@ jobs:
1212
fail-fast: false
1313

1414
matrix:
15-
env: [{TARGET: wheel_manylinux2010_x86_64}, {TARGET: wheel_manylinux2010_i686}, {TARGET: wheel_manylinux2014_aarch64}]
15+
image:
16+
- manylinux2010_x86_64
17+
- manylinux2010_i686
18+
- manylinux_2_24_x86_64
19+
- manylinux_2_24_i686
20+
- manylinux_2_24_aarch64
21+
- musllinux_1_1_x86_64
22+
- musllinux_1_1_aarch64
23+
#- manylinux_2_24_ppc64le
24+
#- manylinux_2_24_ppc64le
25+
#- manylinux_2_24_s390x
1626

1727
runs-on: ubuntu-latest
1828

@@ -30,7 +40,7 @@ jobs:
3040
3141
- name: Building wheel
3242
run: |
33-
make sdist ${{ matrix.env.TARGET }}
43+
make sdist wheel_${{ matrix.image }}
3444
3545
- name: Copy wheels in dist
3646
run: cp wheelhouse*/fastrlock*.whl dist/
@@ -44,7 +54,7 @@ jobs:
4454
- name: Archive Wheels
4555
uses: actions/upload-artifact@v3
4656
with:
47-
name: ${{ matrix.env.TARGET }}
57+
name: ${{ matrix.image }}
4858
path: dist/*manylinux*.whl
4959
if-no-files-found: ignore
5060

0 commit comments

Comments
 (0)