From c6dc2a979f88d88df765885aea6be4f092a0c2ab Mon Sep 17 00:00:00 2001 From: Viktor Petersson Date: Tue, 16 Jun 2026 13:10:46 +0000 Subject: [PATCH] Add arm64 and armhf binaries to releases 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) --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8b159c..02cea21 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,6 +38,14 @@ jobs: os: ubuntu-22.04 rust: stable target: x86_64-unknown-linux-musl + - build: linux-arm64 + os: ubuntu-22.04 + rust: stable + target: aarch64-unknown-linux-gnu + - build: linux-armhf + os: ubuntu-22.04 + rust: stable + target: armv7-unknown-linux-gnueabihf - build: macos os: macos-15 rust: stable