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 339669e commit f95f608Copy full SHA for f95f608
.github/workflows/dist.yml
@@ -62,7 +62,11 @@ jobs:
62
if: runner.os == 'Linux'
63
uses: docker/setup-qemu-action@v3
64
with:
65
- platforms: all
+ # setup-qemu-action by default uses `tonistiigi/binfmt:latest` image,
66
+ # which is out of date. This causes seg faults during build.
67
+ # Here we manually fix the version.
68
+ image: tonistiigi/binfmt:qemu-v8.1.5
69
+ platforms: arm64
70
71
- name: Install cibuildwheel
72
# Note: the default manylinux is manylinux2014
0 commit comments