Add scripts for building the PIP wheel and tarballs

This commit is contained in:
Dave Page 2017-03-30 17:05:49 -04:00
parent b826e0863c
commit 0a381c4a53
2 changed files with 22 additions and 0 deletions

11
ci/build_pip_wheel.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
echo "################################################################################"
echo "Building PIP wheel..."
echo "################################################################################"
echo
. $WORKSPACE/pgadmin-venv/bin/activate
$WORKSPACE/pgadmin-venv/bin/pip install Sphinx==1.4.9
cd $WORKSPACE/
make pip

11
ci/build_tarballs.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
echo "################################################################################"
echo "Building Tarballs..."
echo "################################################################################"
echo
. $WORKSPACE/pgadmin-venv/bin/activate
$WORKSPACE/pgadmin-venv/bin/pip install Sphinx==1.4.9
cd $WORKSPACE/
make src