From 0a381c4a53fce6cf0635e90cb77ad2d8dc36bbfd Mon Sep 17 00:00:00 2001 From: Dave Page Date: Thu, 30 Mar 2017 17:05:49 -0400 Subject: [PATCH] Add scripts for building the PIP wheel and tarballs --- ci/build_pip_wheel.sh | 11 +++++++++++ ci/build_tarballs.sh | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100755 ci/build_pip_wheel.sh create mode 100755 ci/build_tarballs.sh 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