Fix wheel build command

Change Ibc4abb0ba18673791634d79c4970be965f9774e6 dropped the "pip
wheel ..." bit of this, leading to syntax errors.

Change-Id: I70ae19cc974a8c34ad9ff380fee5adbb17c96ff4
This commit is contained in:
Ian Wienand 2017-01-17 20:43:32 +11:00
parent 6c8843dd4b
commit 47c2caf3a4

View File

@ -14,7 +14,7 @@ for BRANCH in $BRANCHES; do
rm -rf build_env
virtualenv -p $PYTHON_VERSION build_env
for pkg in $(cat /tmp/upper-constraints.txt); do
build_env/bin/pip --log $WORKSPACE/pip.log -w $WHEELHOUSE_DIR "${pkg}" || \
build_env/bin/pip --log $WORKSPACE/pip.log wheel -w $WHEELHOUSE_DIR "${pkg}" || \
echo "*** WHEEL BUILD FAILURE: ${pkg}"
done
done