From 0a036bc0ecf8fd491fdc5c8e6b4a394cd23be751 Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Mon, 8 Nov 2021 20:44:17 +0000 Subject: [PATCH] Update our build script to publish Mac aarch_64 binaries These are still x86-64 binaries at the moment (see #8557), but should be usable on M1 Macs in the Rosetta compatibility mode. Let's start publishing them on our GitHub release page and then eventually we can make them into true x86-64 binaries. This fixes #9200. --- protoc-artifacts/build-zip.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protoc-artifacts/build-zip.sh b/protoc-artifacts/build-zip.sh index 7d1923e6e608..1d977259f3ea 100755 --- a/protoc-artifacts/build-zip.sh +++ b/protoc-artifacts/build-zip.sh @@ -16,6 +16,7 @@ release page. If the target is protoc, well-known type .proto files will also be included. Each invocation will create 8 zip packages: dist/--win32.zip dist/--win64.zip + dist/--osx-aarch_64.zip dist/--osx-x86_64.zip dist/--linux-x86_32.zip dist/--linux-x86_64.zip @@ -33,6 +34,7 @@ VERSION_NUMBER=$2 declare -a FILE_NAMES=( \ win32.zip windows-x86_32.exe \ win64.zip windows-x86_64.exe \ + osx-aarch_64.zip osx-aarch_64.exe \ osx-x86_64.zip osx-x86_64.exe \ linux-x86_32.zip linux-x86_32.exe \ linux-x86_64.zip linux-x86_64.exe \