diff options
author | Maros Marsalek <mmarsale@cisco.com> | 2016-08-22 14:44:03 +0200 |
---|---|---|
committer | Maros Marsalek <mmarsale@cisco.com> | 2016-08-22 14:47:38 +0200 |
commit | 8ad3bb2b21db32a3426bd57faaff49d0ace7dfaa (patch) | |
tree | dd0eee2684e6f1fde3a1d2ddf9b433781306b75e /jjb/honeycomb | |
parent | 950174aa2abacf0e6ffc098a1ac49373e4a5db87 (diff) |
Publish Honeycomb deb package
Change-Id: I9d7614eb4d0586ba42d1156d119c68e8bac285a1
Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'jjb/honeycomb')
-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 |