Marek Celoud | 43d293f | 2017-06-07 12:29:24 +0200 | [diff] [blame] | 1 | sudo: required |
| 2 | services: |
| 3 | - docker |
| 4 | |
| 5 | install: |
| 6 | - pip install PyYAML |
| 7 | - pip install virtualenv |
| 8 | - | |
| 9 | test -e Gemfile || cat <<EOF > Gemfile |
| 10 | source 'https://rubygems.org' |
| 11 | gem 'rake' |
| 12 | gem 'test-kitchen' |
| 13 | gem 'kitchen-docker' |
| 14 | gem 'kitchen-vagrant' |
| 15 | gem 'kitchen-inspec' |
| 16 | gem 'inspec' |
| 17 | gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git' |
| 18 | - bundle install |
| 19 | |
Martin Polreich | c89eaad | 2017-07-17 13:41:14 +0200 | [diff] [blame] | 20 | env: |
Martin Polreich | c25959a | 2017-08-24 16:09:28 +0200 | [diff] [blame^] | 21 | - PLATFORM=trevorj/salty-whales:trusty SUITE=master_cluster |
| 22 | - PLATFORM=trevorj/salty-whales:xenial SUITE=master_cluster |
| 23 | - PLATFORM=trevorj/salty-whales:trusty SUITE=pool_cluster |
| 24 | - PLATFORM=trevorj/salty-whales:xenial SUITE=pool_cluster |
| 25 | - PLATFORM=trevorj/salty-whales:trusty SUITE=master_contrail |
| 26 | - PLATFORM=trevorj/salty-whales:xenial SUITE=master_contrail |
| 27 | - PLATFORM=trevorj/salty-whales:trusty SUITE=master_contrail4_0 |
| 28 | - PLATFORM=trevorj/salty-whales:xenial SUITE=master_contrail4_0 |
| 29 | - PLATFORM=trevorj/salty-whales:trusty SUITE=pool_contrail4_0 |
| 30 | - PLATFORM=trevorj/salty-whales:xenial SUITE=pool_contrail4_0 |
Martin Polreich | c89eaad | 2017-07-17 13:41:14 +0200 | [diff] [blame] | 31 | |
Marek Celoud | 43d293f | 2017-06-07 12:29:24 +0200 | [diff] [blame] | 32 | before_script: |
| 33 | - set -o pipefail |
| 34 | - make test | tail |
| 35 | |
| 36 | script: |
Martin Polreich | c25959a | 2017-08-24 16:09:28 +0200 | [diff] [blame^] | 37 | - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration |
Marek Celoud | 43d293f | 2017-06-07 12:29:24 +0200 | [diff] [blame] | 38 | |
| 39 | notifications: |
| 40 | webhooks: |
| 41 | urls: |
| 42 | - https://webhooks.gitter.im/e/6123573504759330786b |
| 43 | on_success: change # options: [always|never|change] default: always |
| 44 | on_failure: never # options: [always|never|change] default: always |
| 45 | on_start: never # options: [always|never|change] default: always |
| 46 | on_cancel: never # options: [always|never|change] default: always |
| 47 | on_error: never # options: [always|never|change] default: always |
| 48 | email: false |