File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,31 +69,19 @@ jobs:
6969 run : |
7070 python3 -m pip install -r .ci/requirements-cibw.txt
7171
72- - name : Build wheels (manylinux)
73- if : matrix.spec != 'musllinux'
72+ - name : Build wheels
7473 run : |
7574 python3 -m cibuildwheel --output-dir wheelhouse
7675 env :
7776 # Build only the currently selected Linux architecture (so we can
7877 # parallelise for speed).
7978 CIBW_ARCHS : " aarch64"
8079 # Likewise, select only one Python version per job to speed this up.
81- CIBW_BUILD : " ${{ matrix.python-version }}-manylinux*"
80+ CIBW_BUILD : " ${{ matrix.python-version }}-${{ matrix.spec == 'musllinux' && 'musllinux' || ' manylinux' }} *"
8281 # Extra options for manylinux.
8382 CIBW_MANYLINUX_AARCH64_IMAGE : ${{ matrix.spec }}
8483 CIBW_MANYLINUX_PYPY_AARCH64_IMAGE : ${{ matrix.spec }}
8584
86- - name : Build wheels (musllinux)
87- if : matrix.spec == 'musllinux'
88- run : |
89- python3 -m cibuildwheel --output-dir wheelhouse
90- env :
91- # Build only the currently selected Linux architecture (so we can
92- # parallelise for speed).
93- CIBW_ARCHS : " aarch64"
94- # Likewise, select only one Python version per job to speed this up.
95- CIBW_BUILD : " ${{ matrix.python-version }}-${{ matrix.spec }}*"
96-
9785 - uses : actions/upload-artifact@v4
9886 with :
9987 name : dist-qemu-${{ matrix.python-version }}-${{ matrix.spec }}
You can’t perform that action at this time.
0 commit comments