diff options
author | Thanh Ha <thanh.ha@linuxfoundation.org> | 2016-10-14 16:00:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-10-14 16:00:22 +0000 |
commit | bb841f39b864dbe771e7da25dfb7139070d1eb08 (patch) | |
tree | 64ae925e5367c1028fb360c1109311641032384b /jjb | |
parent | 8a75e61f3006124edb8ab4ebfc24dbd6fcbf4f77 (diff) | |
parent | faece9986d53656ea1e58c94ad79d68d98263208 (diff) |
Merge "Enable ubuntu16 build for HC"
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/honeycomb/honeycomb.yaml | 3 | ||||
-rw-r--r-- | jjb/honeycomb/include-raw-honeycomb-pkg-push.sh | 15 |
2 files changed, 16 insertions, 2 deletions
diff --git a/jjb/honeycomb/honeycomb.yaml b/jjb/honeycomb/honeycomb.yaml index 547f563c0..d59e19521 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') |