summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Warnicke <eaw@cisco.com>2016-06-08 14:58:27 -0500
committerEd Warnicke <eaw@cisco.com>2016-06-08 15:10:41 -0500
commitc8c9d415a8f5812e85c7d819d1a47c482792da5c (patch)
tree3c2b84c4ce367ceab67293f42eed763fe9f85193
parent6a64da91c799e084630b841c5c7e3c64faaef4c2 (diff)
Provide common cleanup script to be used across projects
Change-Id: Iebafbd25bee5cbf9c09fe0183b5d7e4c1eef8bb8 Signed-off-by: Ed Warnicke <eaw@cisco.com>
-rw-r--r--jjb/nsh_sfc/nsh_sfc.yaml31
-rw-r--r--jjb/scripts/cleanup_vpp_plugin_dev_env.sh31
2 files changed, 56 insertions, 6 deletions
diff --git a/jjb/nsh_sfc/nsh_sfc.yaml b/jjb/nsh_sfc/nsh_sfc.yaml
index 199f5ebef..90d460930 100644
--- a/jjb/nsh_sfc/nsh_sfc.yaml
+++ b/jjb/nsh_sfc/nsh_sfc.yaml
@@ -7,12 +7,16 @@
project: 'nsh_sfc'
os:
- - ubuntu1404
- - ubuntu1604
- - centos7
+ - ubuntu1404:
+ repo-os-part: 'ubuntu.trusty.main'
+ - ubuntu1604:
+ repo-os-part: 'ubuntu.xenial.main'
+ - centos7:
+ repo-os-part: 'centos7'
stream:
- master:
branch: 'master'
+ repo-stream-part: 'master'
- job-template:
name: 'nsh_sfc-verify-{stream}-{os}'
@@ -34,6 +38,8 @@
branch: '{branch}'
- os-parameter:
os: '{os}'
+ - repo-name-parameter:
+ repo-name: '{repo-stream-part}.{repo-os-part}'
scm:
- gerrit-trigger-scm:
@@ -53,7 +59,10 @@
builders:
- shell:
- !include-raw-escape: include-raw-nsh_sfc-build.sh
+ !include-raw-escape:
+ - ../scripts/cleanup_vpp_plugin_dev_env.sh
+ - include-raw-nsh_sfc-build.sh
+ - ../scripts/cleanup_vpp_plugin_dev_env.sh
- job-template:
name: 'nsh_sfc-verify-image-{stream}-{os}'
@@ -75,6 +84,8 @@
branch: '{branch}'
- os-parameter:
os: '{os}'
+ - repo-name-parameter:
+ repo-name: '{repo-stream-part}.{repo-os-part}'
scm:
- gerrit-trigger-scm:
@@ -107,7 +118,10 @@
builders:
- shell:
- !include-raw-escape: include-raw-nsh_sfc-build.sh
+ !include-raw-escape:
+ - ../scripts/cleanup_vpp_plugin_dev_env.sh
+ - include-raw-nsh_sfc-build.sh
+ - ../scripts/cleanup_vpp_plugin_dev_env.sh
- job-template:
name: 'nsh_sfc-merge-{stream}-{os}'
@@ -128,6 +142,8 @@
branch: '{branch}'
- os-parameter:
os: '{os}'
+ - repo-name-parameter:
+ repo-name: '{repo-stream-part}.{repo-os-part}'
scm:
- gerrit-trigger-scm:
@@ -147,4 +163,7 @@
builders:
- shell:
- !include-raw-escape: include-raw-nsh_sfc-build.sh \ No newline at end of file
+ !include-raw-escape:
+ - ../scripts/cleanup_vpp_plugin_dev_env.sh
+ - include-raw-nsh_sfc-build.sh
+ - ../scripts/cleanup_vpp_plugin_dev_env.sh \ No newline at end of file
diff --git a/jjb/scripts/cleanup_vpp_plugin_dev_env.sh b/jjb/scripts/cleanup_vpp_plugin_dev_env.sh
new file mode 100644
index 000000000..ebdba5fbd
--- /dev/null
+++ b/jjb/scripts/cleanup_vpp_plugin_dev_env.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+set -e -o pipefail
+
+# Figure out what system we are running on
+if [ -f /etc/lsb-release ];then
+ . /etc/lsb-release
+elif [ -f /etc/redhat-release ];then
+ sudo yum install -y redhat-lsb
+ DISTRIB_ID=`lsb_release -si`
+ DISTRIB_RELEASE=`lsb_release -sr`
+ DISTRIB_CODENAME=`lsb_release -sc`
+ DISTRIB_DESCRIPTION=`lsb_release -sd`
+fi
+echo DISTRIB_ID: $DISTRIB_ID
+echo DISTRIB_RELEASE: $DISTRIB_RELEASE
+echo DISTRIB_CODENAME: $DISTRIB_CODENAME
+echo DISTRIB_DESCRIPTION: $DISTRIB_DESCRIPTION
+
+function cleanup {
+ # Setup by installing vpp-dev and vpp-lib
+ if [ $DISTRIB_ID == "Ubuntu" ]; then
+ sudo rm -f /etc/apt/sources.list.d/99fd.io.list
+ sudo apt-get -y remove vpp-dev vpp-lib vpp-dev vpp-lib vpp vpp-dpdk-dev vpp-dpdk-dkms vpp-dbg
+ elif [[ $DISTRIB_ID == "CentOS" ]]; then
+ sudo rm -f /etc/yum.repos.d/fdio-master.repo
+ sudo yum -y remove vpp-devel vpp-lib vpp
+ fi
+}
+
+trap cleanup EXIT
+cleanup