diff options
author | Tim Smith <tsmith@chef.io> | 2019-04-08 15:04:12 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-04-08 15:04:12 -0700 |
commit | 777560c372d56b1fca1138408019a29b25fda658 (patch) | |
tree | 3904b18713a20c98fcf6789b80b298df833fa279 /.travis.yml | |
parent | 4fa2d7c08ea085d3e55149a6706958c2e6a0fb3d (diff) | |
download | chef-777560c372d56b1fca1138408019a29b25fda658.tar.gz |
Add Debian 10 testing to Travis
We have a dokken box for Debian 10 now. We should integration test PRs against it.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 6368df2a74..627ea6f726 100644 --- a/.travis.yml +++ b/.travis.yml @@ -109,11 +109,6 @@ matrix: TEST_GEM: chef/knife-windows script: bundle exec tasks/bin/run_external_test $TEST_GEM master rake unit_spec rvm: 2.6.2 - # disable this pending a Chef 14 compat version of poise - # - env: - # TEST_GEM: poise/poise - # script: bundle exec tasks/bin/run_external_test $TEST_GEM master rake spec - # rvm: 2.6.2 ### START TEST KITCHEN ONLY ### - rvm: 2.5.5 services: docker @@ -221,6 +216,22 @@ matrix: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - cd kitchen-tests script: + - bundle exec kitchen test end-to-end-debian-10 + after_failure: + - cat .kitchen/logs/kitchen.log + env: + - DEBIAN=10 + - KITCHEN_YAML=kitchen.travis.yml + - rvm: 2.5.5 + services: docker + 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) + before_script: + - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) + - cd kitchen-tests + script: - bundle exec kitchen test end-to-end-centos-6 after_failure: - cat .kitchen/logs/kitchen.log |