Revert "CI: Rename global-settings to mvn-glob..."
[ci-management.git] / jjb / iec / iec-compass-build.sh
index 64cea9e..09dd66e 100755 (executable)
@@ -1,19 +1,51 @@
 #!/bin/bash
-set -e
+set -ex
 
-echo "begin build compass"
-git clone https://github.com/opnfv/compass4nfv.git
+check_env(){
+  #Checking python-pip software status. If failed, reinstall it.
+  set +e
+  sudo pip --version
+  CHECK_PIP_SUDO=$?
 
-cd compass4nfv
+  pip --version
+  CHECK_PIP_USER=$?
+  set -e
 
-COMPASS_WORK_DIR=$WORKSPACE/../compass-work
-mkdir -p $COMPASS_WORK_DIR
-ln -s $COMPASS_WORK_DIR work
+  #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
 
-sudo docker rm -f `docker ps | grep compass | cut -f1 -d' '` || true
+  # Clean environment
+  sudo docker rm -f `sudo docker ps | grep compass | cut -f1 -d' '` || true
+}
 
-curl -s http://people.linaro.org/~yibo.cai/compass/compass4nfv-arm64-fixup.sh | bash || true
+build_compass(){
 
-./build.sh
+  echo "Clone compass4nfv"
+  git clone -b CompassinAkrainoIEC https://github.com/iecedge/compass4nfv.git
+
+  cd compass4nfv
+
+  COMPASS_WORK_DIR=$WORKSPACE/../compass-work
+
+  mkdir -p $COMPASS_WORK_DIR
+  ln -snf $COMPASS_WORK_DIR work
+
+  ./build.sh
+}
+
+check_env
+
+# Build compass
+build_compass
+
+# Fix permissions so we can archive log files before pushing to Nexus
+sudo chown $(id -u):$(id -g) -R "${WORKSPACE}"
 
 exit 0