Set static `DOCKER_VERSION` for `ppc64le` and `s390x` (#7123)

pull/7130/head
Steven Kang 2022-06-27 09:48:49 +12:00 committed by GitHub
parent 46e1a01625
commit b84e1c8550
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,10 @@ elif [[ ${ARCH} == "arm" ]]; then
ARCH="armhf"
elif [[ ${ARCH} == "arm64" ]]; then
ARCH="aarch64"
elif [[ ${ARCH} == "ppc64le" ]]; then
DOCKER_VERSION="18.06.3"
elif [[ ${ARCH} == "s390x" ]]; then
DOCKER_VERSION="18.06.3"
fi
rm -rf "${DOWNLOAD_FOLDER}"