From: Maros Marsalek Date: Mon, 22 Aug 2016 12:44:03 +0000 (+0200) Subject: Publish Honeycomb deb package X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=8ad3bb2b21db32a3426bd57faaff49d0ace7dfaa;p=ci-management.git Publish Honeycomb deb package Change-Id: I9d7614eb4d0586ba42d1156d119c68e8bac285a1 Signed-off-by: Maros Marsalek --- 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