Skip to content

Commit e5151c5

Browse files
authored
Update test_wheel.yml
1 parent 8b88ea8 commit e5151c5

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/test_wheel.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,22 @@ jobs:
4242
with:
4343
architecture: 'x86'
4444

45-
- name: Build wheels
46-
if: ${{ matrix.buildplat[1] == 'manylinux_x86_64' || matrix.buildplat[1] == 'musllinux_x86_64'}}
45+
- name: Build wheels for manylinux
46+
if: ${{ matrix.buildplat[1] == 'manylinux_x86_64'}}
4747
uses: pypa/cibuildwheel@v2.16.1
4848
env:
4949
CIBW_PRERELEASE_PYTHONS: True
5050
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
5151
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux_2_28_x86_64
5252

53+
- name: Build wheels for musllinux
54+
if: ${{ matrix.buildplat[1] == 'musllinux_x86_64'}}
55+
uses: pypa/cibuildwheel@v2.16.1
56+
env:
57+
CIBW_PRERELEASE_PYTHONS: True
58+
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
59+
CIBW_MUSLLINUX_X86_64_IMAGE: quay.io/pypa/musllinux_1_2_x86_64
60+
5361
- name: Build wheels
5462
if: ${{ matrix.buildplat[1] != 'manylinux_x86_64' && matrix.buildplat[1] != 'musllinux_x86_64'}}
5563
uses: pypa/cibuildwheel@v2.16.1

0 commit comments

Comments
 (0)