From 5a2fa3aa950310e22b65c5d15a44ccae4249cb94 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 11 Feb 2023 18:31:50 -0800 Subject: [PATCH] .github/workflows: add armv5 and armv7 cross tests armv5 because that's what we ship to most downstreams right now, armv7 becuase that's what we want to ship more of. Fixes https://github.com/tailscale/tailscale/issues/7269 Signed-off-by: David Anderson --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 32a74470a..56d96bcc8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -146,6 +146,12 @@ jobs: goarch: "386" # thanks yaml - goos: linux goarch: loong64 + - goos: linux + goarch: arm + goarm: "5" + - goos: linux + goarch: arm + goarm: "7" # macOS - goos: darwin goarch: amd64 @@ -171,6 +177,7 @@ jobs: env: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }} + GOARM: ${{ matrix.goarm }} CGO_ENABLED: "0" - name: build tests run: ./tool/go test -exec=true ./...