File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ set -e -x
55# Install system packages required by our library
66yum install -y cmake openssl-devel gcc automake
77
8+ # Ensure a fresh build of rabbitmq-c.
9+ (cd /workspace && make submodules)
10+ rm -rf /workspace/rabbitmq-c/build
11+ (cd /workspace && make rabbitmq-c)
12+
813# Compile wheels
914for PYBIN in /opt/python/* /bin; do
1015 (cd /workspace && ${PYBIN} /python setup.py install)
@@ -22,7 +27,7 @@ for PYBIN in /opt/python/*/bin/; do
2227 # vine 5.0.0a1 breaks python2
2328 # https://github.com/celery/vine/issues/34
2429 if [[ " $PYBIN " == * " python/cp2" * ]]; then
25- ${PYBIN} /pip install -f " vine==1.3.0"
30+ ${PYBIN} /pip install --force-reinstall " vine==1.3.0"
2631 fi
2732
2833 ${PYBIN} /pip install librabbitmq -f /workspace/wheelhouse
You can’t perform that action at this time.
0 commit comments