Skip to content

Commit

Permalink
Merge pull request #11358 from linux-on-ibm-z/s390x-binary
Browse files Browse the repository at this point in the history
scripts/build-binary: Added s390x support for binary release
  • Loading branch information
xiang90 committed Dec 2, 2019
2 parents ae2bc16 + cabf594 commit 18e9e45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions scripts/build-binary
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 18e9e45

Please sign in to comment.