File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,22 @@ jobs:
42
42
with :
43
43
architecture : ' x86'
44
44
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'}}
47
47
uses : pypa/cibuildwheel@v2.16.1
48
48
env :
49
49
CIBW_PRERELEASE_PYTHONS : True
50
50
CIBW_BUILD : ${{ matrix.python }}-${{ matrix.buildplat[1] }}
51
51
CIBW_MANYLINUX_X86_64_IMAGE : quay.io/pypa/manylinux_2_28_x86_64
52
52
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
+
53
61
- name : Build wheels
54
62
if : ${{ matrix.buildplat[1] != 'manylinux_x86_64' && matrix.buildplat[1] != 'musllinux_x86_64'}}
55
63
uses : pypa/cibuildwheel@v2.16.1
You can’t perform that action at this time.
0 commit comments