File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,18 @@ jobs:
3434 steps :
3535 - uses : actions/checkout@v4
3636 - name : Set up QEMU # Required for aarch64 builds
37- if : matrix.buildplat[1] == 'manylinux_aarch64' || matrix.buildplat[1] == 'musllinux_aarch64'
37+ if : ${{ contains( matrix.buildplat[1], 'aarch64') }}
3838 uses : docker/setup-qemu-action@v3
3939 with :
4040 platforms : all
41- - name : Build wheels
41+ - name : Build wheels (aarch64)
42+ if : ${{ contains(matrix.buildplat[1], 'aarch64') }}
43+ 44+ env :
45+ CIBW_BUILD : ${{ matrix.python }}-${{ matrix.buildplat[1] }}
46+ CIBW_ARCHS_LINUX : aarch64
47+ - name : Build wheels (not aarch64)
48+ if : ${{ !contains(matrix.buildplat[1], 'aarch64') }}
42494350 env :
4451 CIBW_BUILD : ${{ matrix.python }}-${{ matrix.buildplat[1] }}
You can’t perform that action at this time.
0 commit comments