Skip to content

Commit

Permalink
Add more manylinux build architectures.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Nov 2, 2022
1 parent 70ccdd9 commit 957dcec
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,17 @@ jobs:
fail-fast: false

matrix:
env: [{TARGET: wheel_manylinux2010_x86_64}, {TARGET: wheel_manylinux2010_i686}, {TARGET: wheel_manylinux2014_aarch64}]
image:
- manylinux2010_x86_64
- manylinux2010_i686
- manylinux_2_24_x86_64
- manylinux_2_24_i686
- manylinux_2_24_aarch64
- musllinux_1_1_x86_64
- musllinux_1_1_aarch64
#- manylinux_2_24_ppc64le
#- manylinux_2_24_ppc64le
#- manylinux_2_24_s390x

runs-on: ubuntu-latest

Expand All @@ -30,7 +40,7 @@ jobs:
- name: Building wheel
run: |
make sdist ${{ matrix.env.TARGET }}
make sdist wheel_${{ matrix.image }}
- name: Copy wheels in dist
run: cp wheelhouse*/fastrlock*.whl dist/
Expand All @@ -44,7 +54,7 @@ jobs:
- name: Archive Wheels
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.env.TARGET }}
name: ${{ matrix.image }}
path: dist/*manylinux*.whl
if-no-files-found: ignore

Expand Down

0 comments on commit 957dcec

Please sign in to comment.