From cc89621a6c66b31add4b0bfa34c199af445d5f48 Mon Sep 17 00:00:00 2001 From: Antoine Toussaint Date: Sun, 23 Aug 2026 19:00:14 -0400 Subject: [PATCH] feat: add linux/arm64 release build (#72) Core's downloader resolves service-python__linux_arm64.tar.gz by host arch, so arm64 Linux targets 404 today. The goreleaser-cross image already ships aarch64-linux-gnu-gcc, so this is a goreleaser-only change. Co-Authored-By: Claude Opus 4.8 --- .goreleaser.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index fa8413e..1436352 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -37,6 +37,16 @@ builds: - linux goarch: - amd64 + - id: linux-arm64 + binary: service-python + env: + - CGO_ENABLED=1 + - CC=aarch64-linux-gnu-gcc + - CXX=aarch64-linux-gnu-g++ + goos: + - linux + goarch: + - arm64 archives: - id: default