tests docs: upgrade python packages
[vpp.git] / docs / scripts / sphinx-make.sh
index 36596f2..e4fb572 100755 (executable)
@@ -1,21 +1,29 @@
-#!/bin/bash
+#!/bin/bash -ex
+
+# Not refactored to root Makefile because CI calls this from
+# makefile in /docs (as if 'make -C docs').
+if [ -z "$PYTHON" ]
+then
+PYTHON_INTERP=python3
+else
+PYTHON_INTERP=$(PYTHON)
+fi
+
+# Get the OS
+OS_ID=$(grep '^ID=' /etc/os-release  | cut -f2- -d= | sed -e 's/\"//g')
+OS_VERSION=$(grep '^VERSION_ID=' /etc/os-release  | cut -f2- -d= | sed -e 's/\"//g')
+PIP_VERSION=$(grep 'PIP_VERSION=' $WS_ROOT/test/Makefile | cut -d'=' -f2)
 
 if [ "$1" == "venv" ]
 then
-    OS_ID=$(grep '^ID=' /etc/os-release  | cut -f2- -d= | sed -e 's/\"//g')
-    if [ "$OS_ID" == "ubuntu" ]
-    then
-       sudo apt-get install -y python3-pip
-    fi
-    if [ "$OS_ID" == "centos" ]
-    then
-       sudo yum install -y python3-pip
-    fi
-    pip3 install --user virtualenv
-    python3 -m virtualenv $VENV_DIR
+
+    # Install the virtual environment
+    $PYTHON_INTERP -m venv $VENV_DIR
     source $VENV_DIR/bin/activate;
-    pip3 install -r $DOCS_DIR/etc/requirements.txt
+    $PYTHON_INTERP -m pip install pip==$PIP_VERSION
+    $PYTHON_INTERP -m pip install -r $WS_ROOT/test/requirements-3.txt
 else
+    [ -n "$(declare -f deactivate)" ] && deactivate
     source $VENV_DIR/bin/activate;
     VERSION=`source $WS_ROOT/src/scripts/version`
     TM=`TZ=GMT date`