1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/bin/bash
if [ -n "$DEBUG" ]
then
set -x
fi
set -euo pipefail
# ref: https://coderwall.com/p/fkfaqq/safer-bash-scripts-with-set-euxo-pipefail
PYTHON_VERSIONS="cp35-cp35m cp36-cp36m cp37-cp37m"
# Avoid creation of __pycache__/*.py[c|o]
export PYTHONDONTWRITEBYTECODE=1
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
arch=`uname -m`
echo
echo
echo "Compile wheels"
for PYTHON in ${PYTHON_VERSIONS}; do
/opt/python/${PYTHON}/bin/pip install -r /io/requirements/cython.txt
/opt/python/${PYTHON}/bin/pip install -r /io/requirements/wheel.txt
/opt/python/${PYTHON}/bin/pip wheel /io/ -w /io/dist/
done
echo
echo
echo "Bundle external shared libraries into the wheels"
for whl in /io/dist/${package_name}-*-linux_${arch}.whl; do
echo "Repairing $whl..."
auditwheel repair "$whl" -w /io/dist/
done
echo
echo
echo "Cleanup OS specific wheels"
rm -fv /io/dist/*-linux_*.whl
echo
echo
echo "Cleanup non-$package_name wheels"
find /io/dist -maxdepth 1 -type f ! -name "$package_name"'-*-manylinux1_*.whl' -print0 | xargs -0 rm -rf
echo
echo
echo "Install packages and test"
echo "dist directory:"
ls /io/dist
for PYTHON in ${PYTHON_VERSIONS}; do
# clear python cache
find /io -type d -name __pycache__ -print0 | xargs -0 rm -rf
echo
echo -n "Test $PYTHON: "
/opt/python/${PYTHON}/bin/python -c "import platform; print('Building wheel for {platform} platform.'.format(platform=platform.platform()))"
/opt/python/${PYTHON}/bin/pip install -r /io/requirements/cython.txt
/opt/python/${PYTHON}/bin/pip install -r /io/requirements/ci-wheel.txt
/opt/python/${PYTHON}/bin/pip install "$package_name" --no-index -f file:///io/dist
/opt/python/${PYTHON}/bin/py.test /io/tests
done
|