Fix JVPP stable branch builds
[ci-management.git] / jjb / scripts / setup_jvpp_dev_env.sh
1 #!/bin/bash
2 set -e -o pipefail
3
4 # Figure out what system we are running on
5 if [[ -f /etc/lsb-release ]];then
6     . /etc/lsb-release
7 elif [[ -f /etc/redhat-release ]];then
8     sudo yum install -y redhat-lsb
9     DISTRIB_ID=`lsb_release -si`
10     DISTRIB_RELEASE=`lsb_release -sr`
11     DISTRIB_CODENAME=`lsb_release -sc`
12     DISTRIB_DESCRIPTION=`lsb_release -sd`
13 fi
14 echo DISTRIB_ID: $DISTRIB_ID
15 echo DISTRIB_RELEASE: $DISTRIB_RELEASE
16 echo DISTRIB_CODENAME: $DISTRIB_CODENAME
17 echo DISTRIB_DESCRIPTION: $DISTRIB_DESCRIPTION
18
19 function setup {
20     if ! [[ -z ${REPO_NAME} ]]; then
21         echo "INSTALLING VPP-DPKG-DEV from apt/yum repo"
22         REPO_URL="https://packagecloud.io/fdio/${STREAM}"
23         echo "REPO_URL: ${REPO_URL}"
24         # Setup by installing vpp-dev and vpp-lib
25         if [[ "$DISTRIB_ID" == "Ubuntu" ]]; then
26             if ! [[ "${STREAM}" == "master" ]]; then
27                 echo "stable branch - clearing all fdio repos. new one will be installed."
28                 sudo rm  -f /etc/apt/sources.list.d/fdio_*.list
29             fi
30             if [[ -f /etc/apt/sources.list.d/99fd.io.list ]];then
31                 echo "Deleting: /etc/apt/sources.list.d/99fd.io.list"
32                 sudo rm /etc/apt/sources.list.d/99fd.io.list
33             fi
34             curl -s https://packagecloud.io/install/repositories/fdio/${STREAM}/script.deb.sh | sudo bash
35             sudo apt-get -y --force-yes install libvppinfra libvppinfra-dev vpp vpp-dev vpp-plugin-core || true
36         elif [[ "$DISTRIB_ID" == "CentOS" ]]; then
37             if [[ -f /etc/yum.repos.d/fdio-master.repo ]]; then
38                 echo "Deleting: /etc/yum.repos.d/fdio-master.repo"
39                 sudo rm /etc/yum.repos.d/fdio-master.repo
40             fi
41             curl -s https://packagecloud.io/install/repositories/fdio/${STREAM}/script.rpm.sh | sudo bash
42             sudo yum -y install vpp-devel vpp-lib vpp-plugins || true
43         fi
44     fi
45 }
46
47 setup