Skip to content

Commit

Permalink
Added support for manylinux2014
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuzu-Typ committed Oct 29, 2023
1 parent f5f40b8 commit 260f937
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [manylinux_2_28]
distro: [manylinux2014, manylinux_2_28]
arch: [x86_64, aarch64, s390x]
include:
- distro: manylinux2014
arch: i686

env:
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.distro }}
CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.distro }}
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.distro }}
CIBW_MANYLINUX_S390X_IMAGE: ${{ matrix.distro }}
CIBW_BUILD: cp3*-manylinux*
Expand All @@ -90,7 +94,7 @@ jobs:
submodules: recursive

- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' }}
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }}
uses: docker/setup-qemu-action@v3

- uses: actions/setup-python@v4
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [manylinux_2_28]
distro: [manylinux2014, manylinux_2_28]
arch: [x86_64, aarch64, s390x]
include:
- distro: manylinux2014
arch: i686

env:
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.distro }}
CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.distro }}
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.distro }}
CIBW_MANYLINUX_S390X_IMAGE: ${{ matrix.distro }}
CIBW_BUILD: cp3*-manylinux*
Expand All @@ -93,7 +97,7 @@ jobs:
submodules: recursive

- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' }}
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }}
uses: docker/setup-qemu-action@v3

- uses: actions/setup-python@v4
Expand Down

0 comments on commit 260f937

Please sign in to comment.