Merge "Move VIRL jobs to ondemand"
[ci-management.git] / jjb / vpp / include-raw-vpp-maven-push.sh
index 9a5e9ba..6ce3b2c 100644 (file)
@@ -19,6 +19,19 @@ if [ "${OS}" == "ubuntu1604" ]; then
         push_jar "$i"
     done
 
+    for i in $DEBS
+    do
+        push_deb "$i"
+    done
+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"
@@ -32,7 +45,7 @@ elif [ "${OS}" == "centos7" ]; then
     do
         push_rpm "$i"
     done
-elif [ "${OS}" == "opensusenotready" ]; then
+elif [ "${OS}" == "opensuse" ]; then
     # Find the files
     RPMS=$(find . -type f -iname '*.rpm')
     for i in $RPMS