From 881da6ece0696714305aee39afcac17b6abe8e00 Mon Sep 17 00:00:00 2001 From: Lasse Folger Date: Wed, 27 Jul 2022 13:54:53 +0200 Subject: [PATCH] all: Add prebuild binaries for arm64 Change-Id: Ia8a0e2cce7a33c50d0064cb67a4e1c669cf8569b Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/419714 Reviewed-by: Michael Stapelberg Reviewed-by: Damien Neil --- integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test.go b/integration_test.go index a5f92a883..b6378846d 100644 --- a/integration_test.go +++ b/integration_test.go @@ -385,7 +385,7 @@ func mustHandleFlags(t *testing.T) { t.Run("BuildRelease", func(t *testing.T) { v := version.String() for _, goos := range []string{"linux", "darwin", "windows"} { - for _, goarch := range []string{"386", "amd64"} { + for _, goarch := range []string{"386", "amd64", "arm64"} { // Avoid Darwin since 10.15 dropped support for i386. if goos == "darwin" && goarch == "386" { continue