Turn on multi-os merge jobs
[ci-management.git] / jjb / vpp / include-raw-vpp-maven-push.sh
index aea6067..5f42cbd 100644 (file)
@@ -70,15 +70,15 @@ function push_deb ()
 
     push_file "$debfile" "$repoId" "$url" "$version" "$artifactId" deb
 }
-
-for i in $JARS
-do
-    push_jar "$i"
-done
-
-for i in $DEBS
-do
-    push_deb "$i"
-done
-
+if [ ${OS} == "ubuntu1404" ]; then
+    for i in $JARS
+    do
+        push_jar "$i"
+    done
+
+    for i in $DEBS
+    do
+        push_deb "$i"
+    done
+fi
 # vim: ts=4 sw=4 sts=4 et ft=sh :