Add arm64 and armhf binaries to releases#295
Open
vpetersson wants to merge 1 commit into
Open
Conversation
Add aarch64-unknown-linux-gnu (arm64) and armv7-unknown-linux-gnueabihf (armhf) targets to the release build matrix. Both compile via the existing cross-based pipeline; verified locally with cross build for each target. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
nicomiguelino
approved these changes
Jun 16, 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.
What
Adds two Linux ARM targets to the release build matrix in
.github/workflows/release.yml:aarch64-unknown-linux-gnuarmv7-unknown-linux-gnueabihf(standard Debian hardfloat / ARMv7)These produce
screenly-cli-aarch64-unknown-linux-gnu.tar.gzandscreenly-cli-armv7-unknown-linux-gnueabihf.tar.gzrelease assets.Why
Provide prebuilt binaries for ARM hosts (e.g. arm64 servers, ARMv7 devices) so users don't have to build from source.
Notes
crossfor every Linux target, so these slot in with no other changes needed.stripstep only runs for the x86_64linuxandmacosbuilds. This matches the existinglinux-muslbehavior.armv7-unknown-linux-gnueabihf(ARMv7). If ARMv6 (Pi Zero / Pi 1) support is needed, that would be a separatearm-unknown-linux-gnueabihftarget.Testing
Verified locally with
cross(matching CI'scargo install cross):cross build --release --target aarch64-unknown-linux-gnu✅cross build --release --target armv7-unknown-linux-gnueabihf✅ (incl. vendored OpenSSL C build per arch)fileconfirmed correct architectures (ARM aarch64 64-bit; ARM 32-bit EABI5 hardfloat)tar czvfpackaging step — both archives build cleanly🤖 Generated with Claude Code