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 2bb9453 commit 3b315a5Copy full SHA for 3b315a5
.github/workflows/ci.yml
@@ -177,11 +177,18 @@ jobs:
177
- name: Install nasm (Windows)
178
uses: ilammy/[email protected]
179
if: runner.os == 'Windows'
180
+ - name: Set up QEMU
181
+ if: runner.os == 'Linux'
182
+ uses: docker/[email protected]
183
+ with:
184
+ platforms: arm64
185
- name: Build wheels
186
run: cibuildwheel --output-dir dist
187
env:
188
CIBW_SKIP: "*-win32 *-manylinux_i686" # Skip 32 bit.
189
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
190
+ CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux2014"
191
+ CIBW_ARCHS_LINUX: "x86_64 aarch64"
192
# Fully test the build wheels again.
193
CIBW_TEST_REQUIRES: "pytest"
194
# Simple test that requires the project to be build correctly
0 commit comments