mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
scripts/build-binary: Added s390x support for binary release
This commit is contained in:
parent
63dd73c186
commit
cabf5942b2
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user