devops: add linux-arm64 and win32-arm64 to the release build matrix#129
Merged
Conversation
Build aarch64-unknown-linux-gnu and aarch64-pc-windows-msvc on GitHub-hosted native arm64 runners (ubuntu-24.04-arm, windows-11-arm; free for public repos). The YARA, build, and checksum steps key on runner.os, so they run unchanged: apt installs libyara-dev (arm64) on Linux, and Windows builds with --no-default-features as it already does for x64. Publishes ramparts-linux-aarch64 and ramparts-windows-aarch64.exe, unblocking aarch64 platform support in Overwatch (highflame-ai/highflame-overwatch#675).
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
akashjavelin
approved these changes
Jun 15, 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
aarch64-unknown-linux-gnuandaarch64-pc-windows-msvcto the release build matrix, so a published release also ships arm64 Linux and arm64 Windows binaries.Why
Unblocks aarch64 platform support in Overwatch (highflame-ai/highflame-overwatch#675), which consumes the prebuilt ramparts release binaries. Those two targets were deferred because upstream didn't publish them; this is the prerequisite.
How
Native GitHub-hosted arm64 runners (
ubuntu-24.04-arm,windows-11-arm, free for public repos), not cross-compilation. The YARA install, build, and checksum steps key onrunner.os, so they run unchanged:libyara-devfor the runner arch.--no-default-features(no YARA), same as Windows x64 already does.Diff is two matrix entries plus two
Setting up Envsbranches.New release assets
ramparts-linux-aarch64ubuntu-24.04-arm-aarch64_checksums.txtramparts-windows-aarch64.exewindows-11-arm-aarch64_checksums.txtVerification
YAML validated locally. The arm64 build itself is provable only when a release runs this workflow (arm64 MSVC link, arm64
libyara-dev). Plan: merge, then cut a release to confirm the binaries publish.