summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jjb/honeycomb/include-raw-honeycomb-pkg-push.sh14
1 files changed, 12 insertions, 2 deletions
diff --git a/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
index c501a08f1..53ef2ca85 100644
--- a/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
+++ b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
@@ -2,7 +2,6 @@
if [ "${OS}" == "centos7" ]; then
# Build the rpms
-
./packaging/rpm/rpmbuild.sh
# Find the files
@@ -13,4 +12,15 @@ if [ "${OS}" == "centos7" ]; then
do
push_rpm "$i"
done
-fi \ No newline at end of file
+elif [ "${OS}" == "ubuntu1404" ]; then
+
+ # Build the rpms
+ ./packaging/deb/debuild.sh
+
+ # Find the files
+ DEBS=$(find . -type f -iname '*.deb')
+ for i in $DEBS
+ do
+ push_deb "$i"
+ done
+fi