feat: add Linux aarch64 wheel builds via ubuntu-24.04-arm runner#90
Open
KE7 wants to merge 1 commit intoBerkeleyAutomation:masterfrom
Open
feat: add Linux aarch64 wheel builds via ubuntu-24.04-arm runner#90KE7 wants to merge 1 commit intoBerkeleyAutomation:masterfrom
KE7 wants to merge 1 commit intoBerkeleyAutomation:masterfrom
Conversation
Adds native Linux ARM64 (aarch64) wheel builds using GitHub's ubuntu-24.04-arm runner, mirroring how macOS ARM was added in BerkeleyAutomation#74. - Add ubuntu-24.04-arm to the platform matrix in push.yml and release.yml - Remove explicit archs = ["x86_64"] restriction so cibuildwheel auto-detects the native arch on each runner (x86_64 on ubuntu-latest, aarch64 on ubuntu-24.04-arm) - Bump version to 0.7.0.11 All 15 tests pass on linux/aarch64 natively. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
5 tasks
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.
Summary
Linux aarch64 (ARM64) wheels are not currently available on PyPI for
python-fcl, making it uninstallable on platforms such as NVIDIA Jetson, DGX Spark, AWS Graviton, and other aarch64 servers. This PR adds native Linux ARM64 wheel builds.Approach
Follows the same pattern used to add macOS ARM support in #74: add a native ARM runner to the platform matrix rather than using QEMU emulation.
ubuntu-24.04-armto the platform matrix inpush.ymlandrelease.ymlarchs = ["x86_64"]restriction frompyproject.tomlso cibuildwheel auto-detects the native arch per runner (x86_64onubuntu-latest,aarch64onubuntu-24.04-arm)build_dependencies/install_linux.sh— it builds all C++ deps (eigen, libccd, octomap, fcl) from source via cmake, which is architecture-agnosticTesting
All 15 tests pass on linux/aarch64 (verified locally on a native ARM64 machine):