Implement support of Centos7 for semiweekly job
[csit.git] / resources / tools / download_install_vpp_rpms.sh
1 #!/bin/bash
2
3 # Copyright (c) 2016 Cisco and/or its affiliates.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 set -ex
17
18 VER="RELEASE"
19
20 VPP_REPO_URL_PATH="./VPP_REPO_URL"
21 if [ -e "$VPP_REPO_URL_PATH" ]; then
22     VPP_REPO_URL=$(cat $VPP_REPO_URL_PATH)
23     REPO=$(echo ${VPP_REPO_URL#https://nexus.fd.io/content/repositories/})
24     REPO=$(echo ${REPO%/fd.io.centos7})
25 else
26     REPO='https://nexus.fd.io/content/repositories/fd.io.centos7'
27 fi
28
29 ARTIFACTS="vpp vpp-lib vpp-debuginfo vpp-devel vpp-python-api vpp-plugins"
30
31
32 yum-config-manager --add-repo $REPO
33
34 if [ "$1" != "--skip-install" ]; then
35     echo Installing VPP
36     sudo yum install -y $ARTIFACTS
37 else
38     echo VPP Installation skipped
39 fi