aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Folger <lassefolger@google.com>2022-07-27 13:54:53 +0200
committerLasse Folger <lassefolger@google.com>2022-07-28 06:45:07 +0000
commit881da6ece0696714305aee39afcac17b6abe8e00 (patch)
tree91774b110d8f24b270fc95445a4bac1f44eaca4e
parent2a74a0e82391d1fc344067bc6bfc4647cd8ae7d9 (diff)
downloadgolang-protobuf-881da6ece0696714305aee39afcac17b6abe8e00.tar.gz
all: Add prebuild binaries for arm64
Change-Id: Ia8a0e2cce7a33c50d0064cb67a4e1c669cf8569b Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/419714 Reviewed-by: Michael Stapelberg <stapelberg@google.com> Reviewed-by: Damien Neil <dneil@google.com>
-rw-r--r--integration_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_test.go b/integration_test.go
index a5f92a88..b6378846 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