Skip to content

Commit

Permalink
fix: Add manylinux2014_x86_64 wheels (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
crwilcox committed Jan 14, 2021
1 parent c7519d7 commit 74cb457
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scripts/manylinux/build.sh
Expand Up @@ -21,6 +21,7 @@ SCRIPTS_DIR=$(dirname ${MANYLINUX_DIR})
REPO_ROOT=$(dirname ${SCRIPTS_DIR})

docker pull quay.io/pypa/manylinux2010_x86_64
docker pull quay.io/pypa/manylinux2014_x86_64

cd $REPO_ROOT
git submodule update --init --recursive
Expand All @@ -31,3 +32,20 @@ docker run \
--volume ${REPO_ROOT}:/var/code/python-crc32c/ \
quay.io/pypa/manylinux2010_x86_64 \
/var/code/python-crc32c/scripts/manylinux/build_on_centos.sh

docker run \
--rm \
--interactive \
--volume ${REPO_ROOT}:/var/code/python-crc32c/ \
quay.io/pypa/manylinux2014_x86_64 \
/var/code/python-crc32c/scripts/manylinux/build_on_centos.sh

# This currently results in an error
# Status: Downloaded newer image for quay.io/pypa/manylinux2014_aarch64:latest
# standard_init_linux.go:219: exec user process caused: exec format error
# docker run \
# --rm \
# --interactive \
# --volume ${REPO_ROOT}:/var/code/python-crc32c/ \
# quay.io/pypa/manylinux2014_aarch64 \
# /var/code/python-crc32c/scripts/manylinux/build_on_centos.sh

0 comments on commit 74cb457

Please sign in to comment.