summaryrefslogtreecommitdiff
path: root/build-manylinux1-wheels.sh
blob: b11148236101d0c3407691b23f92b13cfc8725f6 (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
#!/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

# Ensure a fresh build of rabbitmq-c.
(cd /workspace && make submodules)
rm -rf /workspace/rabbitmq-c/build
(cd /workspace && make rabbitmq-c)

# Compile wheels
for PYBIN in /opt/python/*/bin; do
    (cd /workspace && ${PYBIN}/python setup.py install)
    ${PYBIN}/pip wheel /workspace/ -w wheelhouse/
done

# Bundle external shared libraries into the wheels
#ls wheelhouse/*
for whl in wheelhouse/*linux*.whl; do
    auditwheel repair $whl -w /workspace/wheelhouse/
done

# Install packages and test
for PYBIN in /opt/python/*/bin/; do
    # vine 5.0.0a1 breaks python2
    # https://github.com/celery/vine/issues/34
    if [[ "$PYBIN" == *"python/cp2"* ]]; then
        ${PYBIN}/pip install --force-reinstall "vine==1.3.0"
    fi

    ${PYBIN}/pip install librabbitmq -f /workspace/wheelhouse
    ${PYBIN}/python -c "import librabbitmq"
    #(cd $HOME; ${PYBIN}/nosetests pymanylinuxdemo)
done