diff options
author | Tim Smith <tsmith@chef.io> | 2017-09-15 14:48:22 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2017-09-18 10:10:55 -0700 |
commit | 1e39eb1a7258cd431372ef909469fe67cff835a2 (patch) | |
tree | 0693dece9a0c33e91372d591398ff93a67424d91 /.travis.yml | |
parent | d0bc4bb1d5cf1ef2479f3828f352a5fb031384c7 (diff) | |
download | chef-1e39eb1a7258cd431372ef909469fe67cff835a2.tar.gz |
Add Debian 9 testing
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index e07a56dbbd..2f41d39b06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -175,6 +175,24 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: + - bundle exec kitchen test webapp-debian-9 + after_failure: + - cat .kitchen/logs/kitchen.log + env: + - DEBIAN=9 + - KITCHEN_YAML=.kitchen.travis.yml + - rvm: 2.4.1 + services: docker + sudo: required + gemfile: kitchen-tests/Gemfile + before_install: + - gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2) + - gem install bundler -v $(grep bundler omnibus_overrides.rb | cut -d'"' -f2) + bundler_args: --without ci docgen guard integration maintenance omnibus_package --frozen + before_script: + - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) + - cd kitchen-tests + script: - bundle exec kitchen test webapp-centos-6 after_failure: - cat .kitchen/logs/kitchen.log |