Try to fix "sudo pip xxx" problem on CI platform
[ci-management.git] / jjb / iec / iec-compass-build.sh
index 64cea9e..3a5e2d8 100755 (executable)
@@ -1,12 +1,36 @@
 #!/bin/bash
 set -e
 
+check_env(){
+  #Checking python-pip software status. If failed, reinstall it.
+  set +e
+  sudo pip --version
+  CHECK_PIP_SUDO=$?
+
+  pip --version
+  CHECK_PIP_USER=$?
+  set -e
+
+  #Check command result, if failed, reinstall the pip
+  if [ ${CHECK_PIP_SUDO} -ne 0 ] || [ ${CHECK_PIP_USER} -ne 0 ]; then
+    echo "Reinstall pip"
+    sudo python -m pip uninstall -y pip
+    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
+    sudo python get-pip.py pip
+    rm get-pip.py
+    hash -r
+  fi
+}
+
+check_env
+
 echo "begin build compass"
 git clone https://github.com/opnfv/compass4nfv.git
 
 cd compass4nfv
 
 COMPASS_WORK_DIR=$WORKSPACE/../compass-work
+
 mkdir -p $COMPASS_WORK_DIR
 ln -s $COMPASS_WORK_DIR work