VPP: forcing removal of old dpdk packages
[ci-management.git] / jjb / scripts / setup_vpp_ubuntu_docker_test.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2018 The Linux Foundation and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Eclipse Public License v1.0
7 # which accompanies this distribution, and is available at
8 # http://www.eclipse.org/legal/epl-v10.html
9 ##############################################################################
10 set -e -o pipefail
11
12 OS_ID=$(grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
13
14 if ! [ -z ${DOCKER_TEST} ] ; then
15                 mount -o remount /dev/shm -o size=512M || true
16         echo "/dev/shm remounted"
17 fi
18
19 ##container server node detection
20 grep search /etc/resolv.conf  || true
21
22 if [ "${OS_ID}" == "ubuntu" ]; then
23     dpkg-query -W -f='${binary:Package}\t${Version}\n' || true
24     pip list || true
25 elif [ "${OS_ID}" == "centos" ]; then
26     yum list installed || true
27     pip list || true
28 elif [ "${OS_ID}" == "opensuse" ]; then
29     yum list installed || true
30     pip list || true
31 fi
32
33 ##This will remove any previously installed dpdk for old branch builds
34
35 if [ "${GERRIT_BRANCH}" != "master" ]; then
36     if [ "${OS_ID}" == "ubuntu" ]; then
37         apt-get -y remove vpp-dpdk-dev || true
38         apt-get -y remove vpp-dpdk-dkms || true
39     elif [ "${OS_ID}" == "centos" ]; then
40         yum -y erase vpp-dpdk-devel || true
41         yum clean all || true
42     fi
43 fi