Asib27's picture
try 1
065fee7 verified
raw
history blame
1.15 kB
#!/bin/bash
set -euo pipefail
package_name="$1"
if [ -z "$package_name" ]
then
>&2 echo "Please pass package name as a first argument of this script ($0)"
exit 1
fi
manylinux1_image_prefix="quay.io/pypa/manylinux1_"
dock_ext_args=""
declare -A docker_pull_pids=() # This syntax requires at least bash v4
for arch in x86_64 i686
do
docker pull "${manylinux1_image_prefix}${arch}" &
docker_pull_pids[$arch]=$!
done
echo Creating dist folder with privileges of host-machine user
mkdir -p dist # This is required to be created with host-machine user privileges
for arch in x86_64 i686
do
echo
echo
arch_pull_pid=${docker_pull_pids[$arch]}
echo Waiting for docker pull PID $arch_pull_pid to complete downloading container for $arch arch...
wait $arch_pull_pid # await for docker image for current arch to be pulled from hub
[ $arch == "i686" ] && dock_ext_args="linux32"
echo Building wheel for $arch arch
docker run --rm -v `pwd`:/io "${manylinux1_image_prefix}${arch}" $dock_ext_args /io/tools/build-wheels.sh "$package_name"
dock_ext_args="" # Reset docker args, just in case
done
set +u