diff --git a/ci/build_pip_wheel.sh b/ci/build_pip_wheel.sh new file mode 100755 index 000000000..951fa530f --- /dev/null +++ b/ci/build_pip_wheel.sh @@ -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 \ No newline at end of file diff --git a/ci/build_tarballs.sh b/ci/build_tarballs.sh new file mode 100755 index 000000000..5e448362f --- /dev/null +++ b/ci/build_tarballs.sh @@ -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 \ No newline at end of file