Add scripts for building the PIP wheel and tarballs
parent
b826e0863c
commit
0a381c4a53
|
|
@ -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
|
||||
|
|
@ -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
|
||||
Loading…
Reference in New Issue