summaryrefslogtreecommitdiffstats
path: root/jjb/scripts/setup_vpp_dpdk_dev_env.sh
blob: cd5bab4473542341211ddc7e8cecc4789b3894e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash

# Copyright (c) 2020 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

echo "---> jjb/scripts/setup_vpp_dpdk_dev_env.sh"

set -e -o pipefail

OS_ID=$(grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
OS_VERSION_ID=$(grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')

function setup {
    if [ -n "$REPO_NAME" ] ; then
        echo "Installing vpp-ext-deps..."
        REPO_URL="https://packagecloud.io/fdio/${STREAM}"
        echo "REPO_URL: $REPO_URL"
        INSTALL_URL="https://packagecloud.io/install/repositories/fdio/${STREAM}"
        echo "INSTALL_URL: $INSTALL_URL"
        # Setup by installing vpp-dev and vpp-lib
        if [ "${OS_ID,,}" == "ubuntu" ] || [ "${OS_ID,,}" == "debian" ] ; then
            if [ "${STREAM}" != "master" ]; then
                echo "stream '${STREAM}' is not master: replacing packagecloud apt sources list with stream specific list"
                sudo apt-get -y remove vpp-ext-deps || true
                sudo rm -f /etc/apt/sources.list.d/fdio_master.list
                curl -s $INSTALL_URL/script.deb.sh | sudo bash
            fi
            sudo apt-get update -qq || true
            local vpp_ext_deps_version="$(apt-cache show vpp-ext-deps | mawk '/Version/ {print $2}' | head -1)"
            local vpp_ext_deps_arch="$(apt-cache show vpp-ext-deps | mawk '/Architecture/ {print $2}' | head -1)"
            local vpp_ext_deps_pkg="/root/Downloads/vpp-ext-deps_${vpp_ext_deps_version}_${vpp_ext_deps_arch}.deb"
            if [ -f "$vpp_ext_deps_pkg" ] ; then
                echo "Installing cached vpp-ext-deps pkg: $vpp_ext_deps_pkg"
                sudo dpkg -i $vpp_ext_deps_pkg
            else
                echo "Installing vpp-ext-deps from packagecloud.io"
                local force_opts="--allow-downgrades --allow-remove-essential"
                force_opts="$force_opts --allow-change-held-packages"
                sudo apt-get -y $force_opts install vpp-ext-deps || true
            fi
        elif [ "${OS_ID,,}" == "centos" ] ; then
            if [ "${STREAM}" != "master" ] ; then
                echo "stream '${STREAM}' is not master: replacing packagecloud repo list with stream specific list"
                sudo yum -y erase vpp-ext-deps || true
                sudo yum clean all || true
                sudo rm -f /etc/yum.repos.d/fdio_master.repo
                curl -s $INSTALL_URL/script.rpm.sh | sudo bash
            fi
            local vpp_ext_deps_version="$(yum -q list vpp-ext-deps 2> /dev/null | mawk '/vpp-ext-deps/{print $2}')"
            local vpp_ext_deps_pkg="$(yum -q list vpp-ext-deps 2> /dev/null | mawk '/vpp-ext-deps/{print $1}')"
            vpp_ext_deps_pkg="/root/Downloads/${vpp_ext_deps_pkg/./-${vpp_ext_deps_version}.}.rpm"
            if [ -f "$vpp_ext_deps_pkg" ] ; then
                echo "Installing cached vpp-ext-deps pkg: $vpp_ext_deps_pkg"
                sudo yum -y localinstall $vpp_ext_deps_pkg || true
            else
                echo "Installing vpp-ext-deps from packagecloud.io"
                sudo yum -y install vpp-ext-deps || true
            fi
        else
            echo "ERROR: Unsupported OS '$OS_ID'!"
        fi
    else
        echo "ERROR: REPO_NAME not found!"
    fi
}

setup