Unbump zlib to version 1.2.11 (#1222)

The newer 1.2.12 version is breaking the tests. The older version is not
available in the main download path, however it is still available in
the archive.
This commit is contained in:
Thiago Kenji Okada 2022-03-28 17:07:42 +01:00 committed by GitHub
parent bffc4bf00c
commit a4a8ce5306
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,11 +20,12 @@ fi
apt-get update -y && apt-get install musl-tools -y
ZLIB_VERSION="1.2.11"
ZLIB_SHA256="c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1"
curl -O -sL "https://www.zlib.net/fossils/zlib-${ZLIB_VERSION}.tar.gz"
# stable archive path
curl -O -sL --fail --show-error "https://zlib.net/fossils/zlib-${ZLIB_VERSION}.tar.gz"
echo "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1 zlib-${ZLIB_VERSION}.tar.gz" |
sha256sum --check
echo "${ZLIB_SHA256} zlib-${ZLIB_VERSION}.tar.gz" | sha256sum --check
tar xf "zlib-${ZLIB_VERSION}.tar.gz"
arch=${BABASHKA_ARCH:-"x86_64"}