Merge "Use fdio-infra-wrappers to simplify common wrapper use"
[ci-management.git] / jjb / honeycomb / include-raw-honeycomb-pkg-push.sh
index c501a08..db10e19 100644 (file)
@@ -2,7 +2,6 @@
 if [ "${OS}" == "centos7" ]; then
 
     # Build the rpms
-
     ./packaging/rpm/rpmbuild.sh
 
     # Find the files
@@ -13,4 +12,26 @@ if [ "${OS}" == "centos7" ]; then
     do
         push_rpm "$i"
     done
-fi
\ No newline at end of file
+elif [ "${OS}" == "ubuntu1404" ]; then
+
+    # Build the debs
+    ./packaging/deb/trusty/debuild.sh
+
+    # Find the files
+    DEBS=$(find . -type f -iname '*.deb')
+    for i in $DEBS
+    do
+        push_deb "$i"
+    done
+elif [ "${OS}" == "ubuntu1604" ]; then
+
+    # Build the debs
+    ./packaging/deb/xenial/debuild.sh
+
+    # Find the files
+    DEBS=$(find . -type f -iname '*.deb')
+    for i in $DEBS
+    do
+        push_deb "$i"
+    done
+fi