summaryrefslogtreecommitdiffstats
path: root/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/honeycomb/include-raw-honeycomb-pkg-push.sh')
-rw-r--r--jjb/honeycomb/include-raw-honeycomb-pkg-push.sh15
1 files changed, 13 insertions, 2 deletions
diff --git a/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
index 53ef2ca85..db10e19dc 100644
--- a/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
+++ b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
@@ -14,8 +14,19 @@ if [ "${OS}" == "centos7" ]; then
done
elif [ "${OS}" == "ubuntu1404" ]; then
- # Build the rpms
- ./packaging/deb/debuild.sh
+ # 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')