We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 041fc86 commit ae4a821Copy full SHA for ae4a821
.github/workflows/dist.yml
@@ -63,12 +63,15 @@ jobs:
63
run: |
64
python -m pip install -U pip
65
python -m pip install "cibuildwheel>=2.20,<3"
66
- podman run --rm --privileged multiarch/qemu-user-static --reset -p yes
+
67
+ - name: Set up qemu
68
+ if: ${{ matrix.buildplat[0] == 'ubuntu-20.04' }}
69
+ run: sudo podman run --rm --privileged multiarch/qemu-user-static --reset -p yes
70
71
- name: Build wheels
72
env:
73
CIBW_BUILD: ${{ matrix.buildplat[2] }}
- CIBW_CONTAINER_ENGINE: podman
74
+ CIBW_CONTAINER_ENGINE: ${{ matrix.buildplat[0] == 'ubuntu-20.04' && 'podman' || 'docker' }}
75
run: python -m cibuildwheel --output-dir wheelhouse
76
77
- name: Build manylinux1 wheels
0 commit comments