summaryrefslogtreecommitdiffstats
path: root/jjb/cicn/include-raw-cicn-maven-push.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/cicn/include-raw-cicn-maven-push.sh')
-rw-r--r--jjb/cicn/include-raw-cicn-maven-push.sh18
1 files changed, 16 insertions, 2 deletions
diff --git a/jjb/cicn/include-raw-cicn-maven-push.sh b/jjb/cicn/include-raw-cicn-maven-push.sh
index 0d476b581..6ce3b2c06 100644
--- a/jjb/cicn/include-raw-cicn-maven-push.sh
+++ b/jjb/cicn/include-raw-cicn-maven-push.sh
@@ -10,7 +10,7 @@ GROUP_ID="io.fd.${PROJECT}"
BASEURL="${NEXUSPROXY}/content/repositories/fd.io."
BASEREPOID='fdio-'
-if [ "${OS}" == "ubuntu1404" ]; then
+if [ "${OS}" == "ubuntu1604" ]; then
# Find the files
JARS=$(find . -type f -iname '*.jar')
DEBS=$(find . -type f -iname '*.deb')
@@ -23,8 +23,15 @@ if [ "${OS}" == "ubuntu1404" ]; then
do
push_deb "$i"
done
-elif [ "${OS}" == "ubuntu1604" ]; then
+elif [ "${OS}" == "ubuntu1804" ]; then
+ # Find the files
+ JARS=$(find . -type f -iname '*.jar')
DEBS=$(find . -type f -iname '*.deb')
+ for i in $JARS
+ do
+ push_jar "$i"
+ done
+
for i in $DEBS
do
push_deb "$i"
@@ -38,5 +45,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
fi
# vim: ts=4 sw=4 sts=4 et ft=sh :