Skip to content

Commit

Permalink
Merge pull request ansible#438 from webknjaz/bugfixes/wheel-build-images
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz authored Nov 12, 2022
2 parents 0af2e1e + b193dd9 commit 6503a7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ VIRTUALENV_PIP_BIN="${VIRTUALENV_PYTHON_BIN} -m pip"
TOOLS_PKGS=auditwheel
if [ "${ARCH}" == "x86_64" ]
then
TOOLS_PKGS="${TOOLS_PKGS} cmake"
TOOLS_PKGS="${TOOLS_PKGS} cmake --only-binary=cmake"
fi

# Avoid creation of __pycache__/*.py[c|o]
Expand Down
6 changes: 3 additions & 3 deletions build-scripts/manylinux-container-image/install_zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ MY_DIR=$(dirname "${BASH_SOURCE[0]}")
source $MY_DIR/build_utils.sh
source get-static-deps-dir.sh

ZLIB_SHA256="91844808532e5ce316b3c010929493c0244f3d37593afd6de04f71821d5136d9"
ZLIB_VERSION="1.2.12"
ZLIB_SHA256="b3a24de97a8fdbc835b9833169501030b8977031bcb54b3b3ac13740f846ab30"
ZLIB_VERSION="1.2.13"

fetch_source "zlib-${ZLIB_VERSION}.tar.gz" "https://www.zlib.net"
fetch_source "zlib-${ZLIB_VERSION}.tar.gz" "https://github.com/madler/zlib/releases/download/v${ZLIB_VERSION}"
check_sha256sum "zlib-${ZLIB_VERSION}.tar.gz" ${ZLIB_SHA256}
tar zxf "zlib-${ZLIB_VERSION}.tar.gz"

Expand Down

0 comments on commit 6503a7a

Please sign in to comment.