summaryrefslogtreecommitdiffstats
path: root/jjb/honeycomb
diff options
context:
space:
mode:
authorMaros Marsalek <mmarsale@cisco.com>2016-10-11 17:18:13 +0200
committerMaros Marsalek <mmarsale@cisco.com>2016-10-12 11:18:08 +0200
commitfaece9986d53656ea1e58c94ad79d68d98263208 (patch)
treeac4f2f3c0ab414cd6ed0cd306405c189ad6ea396 /jjb/honeycomb
parentd73ee2b83c4b072d8df1d0718e7749939cde4f36 (diff)
Enable ubuntu16 build for HC
Change-Id: I8b976f59fe4a17ff0e620b17c40ba8f071a381ac Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'jjb/honeycomb')
-rw-r--r--jjb/honeycomb/honeycomb.yaml3
-rw-r--r--jjb/honeycomb/include-raw-honeycomb-pkg-push.sh15
2 files changed, 16 insertions, 2 deletions
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')