fix(ci)/cicd add aarch64 musl release - #3318
Open
stavrosfilippidis wants to merge 2 commits into
Open
Conversation
- Enables ARM64 users on glibc-constrained systems (Ubuntu 22.04 LTS, Graviton EC2) - Uses musl for static linking (works on any Linux distro) - Matches existing x86_64-musl approach for consistency - Tested locally: docker run ubuntu:latest with cargo build --target aarch64-unknown-linux-musl ✓ Signed-off-by: Stavros <stavrosfilipps@proton.me>
- Formula/rtk.rb: Changed Linux ARM target from gnu to musl (static linking) - README.md: Updated pre-built binary list to show aarch64-musl instead of aarch64-gnu This matches the release workflow changes that now build aarch64-musl for better cross-distro compatibility on Linux ARM64 systems. Signed-off-by: Stavros <stavrosfilipps@proton.me>
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
aarch64-unknown-linux-muslto the release build matrix, enabling ARM64 users on glibc-constrained systems (Ubuntu 22.04 LTS, Graviton EC2) to use prebuilt binariesAddresses: #3241
Test plan
docker run ubuntu:latestwith fullcargo build --release --target aarch64-unknown-linux-musl✓ Binary created successfully (~5.2MB)yamllint .github/workflows/release.yml✓cargo fmt --all --check && cargo clippy --all-targets && cargo test --all✓ (2565 tests pass)