diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index d757180c9..df45822f9 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -18,10 +18,17 @@ jobs: steps: - uses: actions/checkout@v4 + # aarch64 (arm) is built via qemu emulation + # QEMU is sadly too slow. We need to wait for public ARM support + #- name: Set up QEMU + # if: runner.os == 'Linux' + # uses: docker/setup-qemu-action@v3 + # with: + # platforms: all - name: Build wheels uses: pypa/cibuildwheel@v2.19.1 env: - CIBW_SOME_OPTION: value + CIBW_ARCHS_LINUX: auto aarch64 with: package-dir: . output-dir: wheelhouse