feat(ci): build Linux packages for aarch64 (arm64) too#39
Merged
Conversation
The Linux job now runs as a matrix on x86_64 (ubuntu-latest) and aarch64 (ubuntu-24.04-arm) native runners, so the .tar.gz, .deb, .rpm, and AppImage are each built for both architectures — no cross-compilation. Artifacts and release assets are named by arch (x86_64 / aarch64); build_linux.sh and the AppImage step already derive the arch from uname -m, so they pick up aarch64 automatically. The cargo cache key is scoped by arch to avoid poisoning one arch's cache with the other's native binaries. Co-Authored-By: Claude <noreply@anthropic.com>
There was a problem hiding this comment.
Code Review
This pull request updates the CHANGELOG.md file to document that Linux packages are now built for both x86_64 and aarch64 (arm64) architectures in CI using native GitHub arm64 runners, and adds a reference to the assets/rustcat.png launcher icon. There are no review comments, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
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.
Adds a matrix to the
build-linuxjob so the Linux.tar.gz,.deb,.rpm, and AppImage are each built for x86_64 and aarch64 (arm64), using native GitHub arm64 runners (ubuntu-24.04-arm, free for public repos) — no cross-compilation.RustCat-linux-aarch64.deb,RustCat-2.4.0-linux-aarch64.tar.gz,RustCat-2.4.0-aarch64.AppImage, etc.build_linux.shand the AppImage step already derive arch fromuname -m, so they pick up aarch64 with no script changes.runner.os-${matrix.arch}-cargo-...) so the two arches don't poison each other's native-binary caches.fail-fast: falseso one arch failing doesn't cancel the other.🤖 Generated with Claude Code