blob: 06618111d9c2c46b2f85cd5f584bd8177307fd4f (
plain)
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
|
#!/bin/bash
# From: https://github.com/pypa/python-manylinux-demo/blob/master/travis/build-wheels.sh
# which is in the public domain.
#
# This is run inside a CentOS 5 virtual machine to build manylinux wheels:
#
# $ docker run -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/build_manylinux.sh
#
set -e -x
action=$1
if [[ $action == "build" ]]; then
# Compile wheels
for PYBIN in /opt/python/*/bin; do
"$PYBIN/pip" install -r /io/requirements/wheel.pip
"$PYBIN/pip" wheel /io/ -w wheelhouse/
done
# Bundle external shared libraries into the wheels
for whl in wheelhouse/*.whl; do
auditwheel repair "$whl" -w /io/dist/
done
elif [[ $action == "test" ]]; then
# Install packages and test
TOXBIN=/opt/python/cp27-cp27m/bin
"$TOXBIN/pip" install -r /io/requirements/ci.pip
for PYBIN in /opt/python/*/bin/; do
PYNAME=$("$PYBIN/python" -c "import sys; print('python{0[0]}.{0[1]}'.format(sys.version_info))")
TOXENV=$("$PYBIN/python" -c "import sys; print('py{0[0]}{0[1]}'.format(sys.version_info))")
ln -s "$PYBIN/$PYNAME" /usr/local/bin/$PYNAME
"$TOXBIN/tox" -e $TOXENV
rm -f /usr/local/bin/$PYNAME
#"${PYBIN}/pip" install python-manylinux-demo --no-index -f /io/dist
#(cd "$HOME"; "${PYBIN}/nosetests" pymanylinuxdemo)
done
else
echo "Need an action to perform!"
fi
|