scripts/build-binary: Added s390x support for binary release

release-3.5
Nirman Narang 2019-11-13 04:10:46 -08:00
parent 63dd73c186
commit cabf5942b2
2 changed files with 3 additions and 1 deletions

View File

@ -111,7 +111,8 @@ script:
&& GO_BUILD_FLAGS='-v' GOOS=windows GOARCH=amd64 ./build \
&& GO_BUILD_FLAGS='-v' GOARCH=arm ./build \
&& GO_BUILD_FLAGS='-v' GOARCH=arm64 ./build \
&& GO_BUILD_FLAGS='-v' GOARCH=ppc64le ./build"
&& GO_BUILD_FLAGS='-v' GOARCH=ppc64le ./build \
&& GO_BUILD_FLAGS='-v' GOARCH=s390x ./build"
;;
linux-amd64-grpcproxy)
sudo HOST_TMP_DIR=/tmp TEST_OPTS="PASSES='build grpcproxy'" make docker-test

View File

@ -70,6 +70,7 @@ function main {
if [ ${GOOS} == "linux" ]; then
TARGET_ARCHS+=("arm64")
TARGET_ARCHS+=("ppc64le")
TARGET_ARCHS+=("s390x")
fi
for TARGET_ARCH in "${TARGET_ARCHS[@]}"; do