From 8ad3bb2b21db32a3426bd57faaff49d0ace7dfaa Mon Sep 17 00:00:00 2001 From: Maros Marsalek Date: Mon, 22 Aug 2016 14:44:03 +0200 Subject: [PATCH] Publish Honeycomb deb package Change-Id: I9d7614eb4d0586ba42d1156d119c68e8bac285a1 Signed-off-by: Maros Marsalek --- jjb/honeycomb/include-raw-honeycomb-pkg-push.sh | 14 ++++++++++++-- 1 file 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 -- 2.16.6