summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorEd Kern <ejk@cisco.com>2018-04-17 15:43:41 -0600
committerEd Kern <ejk@cisco.com>2018-04-17 15:43:41 -0600
commitf63ecb419befbf86b7e8602a6a0765c01ad59e01 (patch)
tree0c3dbbc6f333f96caeebb6b2a152f27cabe4e620 /jjb
parent6358d938de130c839f0fc0582f8c35aa17fb20b1 (diff)
VPP: opensuse dpdk proper pull and push
Reinstitutes opensuse rpm package push and introduces proper opensuse dpdk pull Change-Id: Ie8f1f2f218bb5de1787d4f6c2f2a64fbaaed70fb Signed-off-by: Ed Kern <ejk@cisco.com>
Diffstat (limited to 'jjb')
-rw-r--r--jjb/scripts/setup_vpp_dpdk_dev_env.sh10
-rw-r--r--jjb/vpp/include-raw-vpp-maven-push.sh14
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 :