Skip to content

Commit 0ceb187

Browse files
authored
Merge pull request #160 from kpark-hrp/kpark/qemu-build-aarch64
Build wheels in multiple platforms with QEMU
2 parents 06f7bac + ae53e6b commit 0ceb187

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,20 @@ jobs:
2323
with:
2424
submodules: true
2525

26+
- name: Set up QEMU
27+
if: runner.os == 'Linux'
28+
uses: docker/setup-qemu-action@v3
29+
with:
30+
platforms: all
31+
2632
- name: Build wheels
2733
uses: pypa/[email protected]
2834
env:
2935
CIBW_BUILD_VERBOSITY: 1
3036
MAXMINDDB_REQUIRE_EXTENSION: 1
37+
# configure cibuildwheel to build native archs ('auto'), and some
38+
# emulated ones
39+
CIBW_ARCHS_LINUX: auto aarch64
3140

3241
- uses: actions/upload-artifact@v4
3342
with:

0 commit comments

Comments
 (0)