We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f443992 commit cbd87efCopy full SHA for cbd87ef
.github/workflows/release.yaml
@@ -154,6 +154,14 @@ jobs:
154
pip install maturin==1.7.4
155
maturin sdist --manifest-path py/Cargo.toml -o wheelhouse
156
157
+ # QEMU is required when building for aarch64.
158
+ # https://cibuildwheel.pypa.io/en/stable/faq/#emulation
159
+ - name: Set up QEMU
160
+ if: matrix.build == 'linux'
161
+ uses: docker/setup-qemu-action@v3
162
+ with:
163
+ platforms: all
164
+
165
- name: Build ${{ matrix.platform || matrix.os }} binaries
166
run: cibuildwheel --output-dir wheelhouse py
167
env:
0 commit comments