blob: afbeca75810713150ce6b026471500ef87f14f4d [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 Polreich5e484852018-01-05 13:13:50 +010021 - 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
31 - 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 Polreich5e484852018-01-05 13:13:50 +010038 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
39 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Marek Celoud43d293f2017-06-07 12:29:24 +020040
41notifications:
42 webhooks:
43 urls:
44 - https://webhooks.gitter.im/e/6123573504759330786b
45 on_success: change # options: [always|never|change] default: always
46 on_failure: never # options: [always|never|change] default: always
47 on_start: never # options: [always|never|change] default: always
48 on_cancel: never # options: [always|never|change] default: always
49 on_error: never # options: [always|never|change] default: always
50 email: false