Add aarch64-linux-musl binary gem to CD pipeline#168
Merged
Conversation
Removes aarch64-linux-musl from the platform exclusion list. The comment said the Rust target was unavailable in rake-compiler-dock, but the platform is now fully supported by both rake-compiler-dock and the rb-sys ecosystem used by oxidize-rb/actions/cross-gem@v1. Fixes #167.
x64-mingw-ucrt maps to the Rust target x86_64-pc-windows-gnu in the rb-sys matrix, so the "Rust target not available in rake-compiler-dock" comment was outdated for this platform too. x64-mingw32 remains excluded since it has been superseded by x64-mingw-ucrt for Ruby 3.1+ and this gem targets 3.2+.
joemsak
approved these changes
Apr 29, 2026
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
Removes
aarch64-linux-muslandx64-mingw-ucrtfrom the platform exclusion list in the CD workflow. Both had been excluded with the comment "Rust target not available in rake-compiler-dock", but that is now outdated:aarch64-linux-musl→ Rust targetaarch64-unknown-linux-musl— explicitly listed as supported in rake-compiler-dock and present in the rb-sys platform matrixx64-mingw-ucrt→ Rust targetx86_64-pc-windows-gnu— also present in the rb-sys platform matrixx64-mingw32remains excluded since it has been superseded byx64-mingw-ucrtfor Ruby 3.1+ and this gem targets 3.2+.arm-linuxremains excluded because Cranelift doesn't support 32-bit architectures.The immediate motivation for
aarch64-linux-muslis #167: users on Alpine Linux / ARM64 can't compile from source due to a Cargo/RubyGems < 4.0.9 conflict, and pre-built binaries resolve that without requiring a Ruby version bump.Closes #167.