Skip to content

Commit e15b820

Browse files
committed
PYTHON-5058 Restore alternate architecture builds (#2133)
(cherry picked from commit 041edbe)
1 parent 3c9a248 commit e15b820

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/dist.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ jobs:
3535
# https://github.com/github/feedback/discussions/7835#discussioncomment-1769026
3636
buildplat:
3737
- [ubuntu-20.04, "manylinux_x86_64", "cp3*-manylinux_x86_64"]
38-
- [ubuntu-24.04-arm, "manylinux_aarch64", "cp3*-manylinux_aarch64"]
39-
# Disabled pending PYTHON-5058
40-
# - [ubuntu-24.04, "manylinux_ppc64le", "cp3*-manylinux_ppc64le"]
41-
# - [ubuntu-24.04, "manylinux_s390x", "cp3*-manylinux_s390x"]
38+
- [ubuntu-20.04, "manylinux_aarch64", "cp3*-manylinux_aarch64"]
39+
- [ubuntu-20.04, "manylinux_ppc64le", "cp3*-manylinux_ppc64le"]
40+
- [ubuntu-20.04, "manylinux_s390x", "cp3*-manylinux_s390x"]
4241
- [ubuntu-20.04, "manylinux_i686", "cp3*-manylinux_i686"]
4342
- [windows-2019, "win_amd6", "cp3*-win_amd64"]
4443
- [windows-2019, "win32", "cp3*-win32"]
@@ -63,6 +62,10 @@ jobs:
6362
if: runner.os == 'Linux'
6463
uses: docker/setup-qemu-action@v3
6564
with:
65+
# 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
6669
platforms: all
6770

6871
- name: Install cibuildwheel

0 commit comments

Comments
 (0)