blob: bdf3c6550d6ee24d23cc8facc301a188a35ce039 [file] [log] [blame]
Marek Celoud43d293f2017-06-07 12:29:24 +02001sudo: required
2services:
3 - docker
4
5install:
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 Polreichc89eaad2017-07-17 13:41:14 +020020env:
Martin Polreichc25959a2017-08-24 16:09:28 +020021 - 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 Polreichc89eaad2017-07-17 13:41:14 +020031
Marek Celoud43d293f2017-06-07 12:29:24 +020032before_script:
33 - set -o pipefail
34 - make test | tail
35
36script:
Martin Polreichc25959a2017-08-24 16:09:28 +020037 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Marek Celoud43d293f2017-06-07 12:29:24 +020038
39notifications:
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