diff options
author | Vanessa Rene Valderrama <vvalderrama@linuxfoundation.org> | 2018-04-18 19:49:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2018-04-18 19:49:17 +0000 |
commit | 65a00259c2b1211621b9bbf6cd6edc5ac1e35a20 (patch) | |
tree | c6a13be8164e68e50304717a953d6f69f0887e53 | |
parent | 2bde0a8abec11e6574dded8a6c212e5f4c13bed2 (diff) | |
parent | f63ecb419befbf86b7e8602a6a0765c01ad59e01 (diff) |
Merge "VPP: opensuse dpdk proper pull and push"
-rw-r--r-- | jjb/scripts/setup_vpp_dpdk_dev_env.sh | 10 | ||||
-rw-r--r-- | jjb/vpp/include-raw-vpp-maven-push.sh | 14 |
2 files changed, 17 insertions, 7 deletions
diff --git a/jjb/scripts/setup_vpp_dpdk_dev_env.sh b/jjb/scripts/setup_vpp_dpdk_dev_env.sh index e16b11c37..f2ceb53ad 100644 --- a/jjb/scripts/setup_vpp_dpdk_dev_env.sh +++ b/jjb/scripts/setup_vpp_dpdk_dev_env.sh @@ -25,6 +25,16 @@ gpgcheck=0 EOF sudo mv fdio-master.repo /etc/yum.repos.d/fdio-master.repo sudo yum -y install vpp-dpdk-devel || true + elif [ "$OS_ID" == "opensuse" ]; then + sudo cat << EOF > fdio-master.repo +[fdio-master] +name=fd.io master branch latest merge +baseurl=${REPO_URL} +enabled=1 +gpgcheck=0 +EOF + sudo mv fdio-master.repo /etc/yum/repos.d/fdio-master.repo + sudo yum -y install vpp-dpdk-devel || true fi fi } diff --git a/jjb/vpp/include-raw-vpp-maven-push.sh b/jjb/vpp/include-raw-vpp-maven-push.sh index cec22da5d..086258ed9 100644 --- a/jjb/vpp/include-raw-vpp-maven-push.sh +++ b/jjb/vpp/include-raw-vpp-maven-push.sh @@ -32,12 +32,12 @@ elif [ "${OS}" == "centos7" ]; then do push_rpm "$i" done -# elif [ "${OS}" == "opensuse" ]; then -# # Find the files -# RPMS=$(find . -type f -iname '*.rpm') -# for i in $RPMS -# do -# push_rpm "$i" -# done +elif [ "${OS}" == "opensuse" ]; then + # Find the files + RPMS=$(find . -type f -iname '*.rpm') + for i in $RPMS + do + push_rpm "$i" + done fi # vim: ts=4 sw=4 sts=4 et ft=sh : |