From faece9986d53656ea1e58c94ad79d68d98263208 Mon Sep 17 00:00:00 2001 From: Maros Marsalek Date: Tue, 11 Oct 2016 17:18:13 +0200 Subject: Enable ubuntu16 build for HC Change-Id: I8b976f59fe4a17ff0e620b17c40ba8f071a381ac Signed-off-by: Maros Marsalek --- jjb/honeycomb/honeycomb.yaml | 3 +++ jjb/honeycomb/include-raw-honeycomb-pkg-push.sh | 15 +++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) (limited to 'jjb') diff --git a/jjb/honeycomb/honeycomb.yaml b/jjb/honeycomb/honeycomb.yaml index f3a225f3b..ccb9f3fef 100644 --- a/jjb/honeycomb/honeycomb.yaml +++ b/jjb/honeycomb/honeycomb.yaml @@ -10,6 +10,9 @@ - ubuntu1404: repo-os-part: 'ubuntu.trusty.main' skip-site: 'false' + - ubuntu1604: + repo-os-part: 'ubuntu.xenial.main' + skip-site: 'true' - centos7: repo-os-part: 'centos7' skip-site: 'true' diff --git a/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh index 53ef2ca85..db10e19dc 100644 --- a/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh +++ b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh @@ -14,8 +14,19 @@ if [ "${OS}" == "centos7" ]; then done elif [ "${OS}" == "ubuntu1404" ]; then - # Build the rpms - ./packaging/deb/debuild.sh + # Build the debs + ./packaging/deb/trusty/debuild.sh + + # Find the files + DEBS=$(find . -type f -iname '*.deb') + for i in $DEBS + do + push_deb "$i" + done +elif [ "${OS}" == "ubuntu1604" ]; then + + # Build the debs + ./packaging/deb/xenial/debuild.sh # Find the files DEBS=$(find . -type f -iname '*.deb') -- cgit 1.2.3-korg