diff options
author | Ed Warnicke <hagbard@gmail.com> | 2016-08-23 11:44:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-08-23 11:44:53 +0000 |
commit | 0454251d2b2568d1b09a46ab9e7368cd0a2376f1 (patch) | |
tree | 50d52ae495a35c5211ff358a0304c93a3053324b | |
parent | 54a1e20dafd6108f35d3604ef2ee82337062998f (diff) | |
parent | 8ad3bb2b21db32a3426bd57faaff49d0ace7dfaa (diff) |
Merge "Publish Honeycomb deb package"
-rw-r--r-- | jjb/honeycomb/include-raw-honeycomb-pkg-push.sh | 14 |
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 |