-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathbuild-manylinux1-wheels.sh
executable file
·42 lines (34 loc) · 1.39 KB
/
build-manylinux1-wheels.sh
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
#!/bin/bash
# Script modified from https://github.com/pypa/python-manylinux-demo
set -e -x
# Install system packages required by our library
yum install -y cmake openssl-devel gcc automake
# Compile wheels
for PYBIN in /opt/python/cp*/bin; do
# Ensure a fresh build of rabbitmq-c.
(cd /workspace && PATH="${PYBIN}:${PATH}" make clean)
(cd /workspace && "${PYBIN}"/python setup.py install)
"${PYBIN}"/pip wheel /workspace/ -w wheelhouse/
done
# use a temporary directory to avoid picking up old wheels
WHEELHOUSE=/workspace/wheelhouse
TMP_WHEELHOUSE=$(mktemp -d -p "${WHEELHOUSE}")
# Bundle external shared libraries into the wheels
for whl in wheelhouse/*linux*.whl; do
auditwheel repair "$whl" -w "${TMP_WHEELHOUSE}"
done
# Install packages and test
for PYBIN in /opt/python/cp*/bin/; do
PYVER=$(echo "${PYBIN}" | cut -d'/' -f 4)
# amqp 5.0.0a1 and vine 5.0.0a1 breaks python2
# https://github.com/celery/vine/issues/34
if [[ "${PYVER}" == *"cp2"* ]]; then
"${PYBIN}"/pip install --force-reinstall "vine==1.3.0"
"${PYBIN}"/pip install --force-reinstall "amqp==2.5.2"
fi
"${PYBIN}"/pip install librabbitmq --no-index -f "${TMP_WHEELHOUSE}"/*-"${PYVER}"-*.whl
"${PYBIN}"/python -c "import librabbitmq"
#(cd $HOME; ${PYBIN}/nosetests pymanylinuxdemo)
mv -f "${TMP_WHEELHOUSE}"/*-"${PYVER}"-*.whl ${WHEELHOUSE}
done
rmdir "${TMP_WHEELHOUSE}"