Add ARM64 support to CI and Distro channel#51
Open
ooaklee wants to merge 2 commits into
Open
Conversation
…nnels (#1) The Rust codebase has always been architecture-agnostic, but distribution pipeline was x86_64-only. This commit adds ARM (aarch64) support so users on Raspberry Pi, Apple Silicon (Asahi Linux), Snapdragon X Elite, and server-grade Ampere Altra can install via apt, AUR, and OBS without building from source. CI/CD (deploy_commit.yaml, deploy_release.yaml): - Convert check_and_format and build_and_distropack jobs to a build matrix targeting both x86_64 (ubuntu-24.04) and aarch64 (ubuntu-24.04-arm) - Use per-architecture DistroPack package IDs via secrets for aarch64 - Add matrix-aware job naming to distinguish arch-specific runs AUR PKGBUILD generators (8 files): - Update arch arrays from arch=('x86_64') to arch=('x86_64' 'aarch64') across all variants: daemon, gtk, webview, tray (stable + git) Documentation: - Add ADR-001 detailing the decision, rationale, and consequences - Add ADR template for future architecture decisions
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.
A small tweak to add support for ARM64 distribution so others on devices like my Snapdragon X Elite Surface Pro 11 (running Linux) can use this great tool with minimal effort.