blob: 95434f97bfdbdcb040b15d6bb1eca49919511d90 [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
Petr Michalec52d4e1f2017-09-11 17:50:54 +020031 - PLATFORM=trevorj/salty-whales:trusty SUITE=common_storageclass
Martin Polreichc89eaad2017-07-17 13:41:14 +020032
Marek Celoud43d293f2017-06-07 12:29:24 +020033before_script:
34 - set -o pipefail
35 - make test | tail
36
37script:
Martin Polreichc25959a2017-08-24 16:09:28 +020038 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Marek Celoud43d293f2017-06-07 12:29:24 +020039
40notifications:
41 webhooks:
42 urls:
43 - https://webhooks.gitter.im/e/6123573504759330786b
44 on_success: change # options: [always|never|change] default: always
45 on_failure: never # options: [always|never|change] default: always
46 on_start: never # options: [always|never|change] default: always
47 on_cancel: never # options: [always|never|change] default: always
48 on_error: never # options: [always|never|change] default: always
49 email: false