Merge pull request #11358 from linux-on-ibm-z/s390x-binary

scripts/build-binary: Added s390x support for binary release
This commit is contained in:
Xiang Li 2019-12-02 14:40:28 -08:00 committed by GitHub
commit 18e9e45bda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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