Build manylinux aarch64 wheels - #466
Closed
mrpollo wants to merge 1 commit into
Closed
Conversation
Add a linux/aarch64 entry to the build-linux matrix, running the same cibuildwheel job natively on GitHub's free ubuntu-24.04-arm hosted runner. The os matrix entry becomes a runner/arch object (like build-macos), CIBW_BUILD selects manylinux_<arch>, and the per-job artifact names include the arch so the two Linux builds don't collide before merging. Verified locally for cp312-manylinux_aarch64 with cibuildwheel 3.4.1 on the manylinux_2_28_aarch64 image, including run_wheel_tests.py (166/166 passed under symengine and sympy). Assisted-by: Claude:claude-fable-5 Signed-off-by: Ramon Roche <mrpollo@gmail.com>
mrpollo
force-pushed
the
mrpollo/linux-aarch64-wheels
branch
from
August 18, 2026 22:08
388526f to
8f6eac0
Compare
aaron-skydio
approved these changes
Aug 18, 2026
aaron-skydio
left a comment
Member
There was a problem hiding this comment.
Awesome, thanks! Will get this merged
Contributor
Author
|
Thanks @aaron-skydio, looking forward to a release with aarch64 support. We are shipping px4 dev environment in a multi-arch container and we recently bundled symforce from pypi, thats when I realized it didnt' already have arm64 support. |
Member
|
Very cool. Should be able to tag a point release with this easily |
Member
|
v0.12 is out now with this change |
Contributor
Author
|
Thanks @aaron-skydio 🎉 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds Linux aarch64 wheels to the wheel build, next to the existing x86_64 Linux and arm64 macOS ones. The
build-linuxjob now runs the same cibuildwheel configuration natively on GitHub's freeubuntu-24.04-armhosted runner (no QEMU), so build times should be in line with the x86_64 jobs. Theosmatrix entry becomes a runner/arch object like the macOS job already uses,CIBW_BUILDselectsmanylinux_<arch>, and the per-job artifact names include the arch so the two Linux builds don't collide beforemerge-wheel-artifactspicks them up. Nothing changes for the existing x86_64 build beyond the artifact name.I built and tested
cp312-manylinux_aarch64locally with cibuildwheel 3.4.1 against the samemanylinux_2_28_aarch64image (arm64 Docker on Apple Silicon), includingrun_wheel_tests.pyunder bothsymengineandsympy. auditwheel tags the resultmanylinux_2_27_aarch64.manylinux_2_28_aarch64, matching the x86_64 wheels.Partially addresses #146.
Assisted-by: Claude:claude-fable-5
Signed-off-by: Ramon Roche mrpollo@gmail.com