pgadmin4/ci/build_pip_wheel.sh

18 lines
456 B
Bash
Raw Normal View History

#!/bin/sh
echo "################################################################################"
echo "Building PIP wheel..."
echo "################################################################################"
echo
. $WORKSPACE/pgadmin-venv/bin/activate
2017-03-30 16:11:08 -05:00
SPHINX_VER=""
if [ "$PYTHON_VERSION" = "2.6" -o ""$PYTHON_VERSION" = "3.3" ]; then
SPHINX_VER="==1.4.9"
fi
$WORKSPACE/pgadmin-venv/bin/pip install Sphinx$SPHINX_VER
cd $WORKSPACE/
make pip