blob: 77b9e3c5111ac1687caef237866f6ab4d30ab2bc [file] [log] [blame]
Martin8192a0ad192017-03-16 15:38:13 +01001sudo: 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-inspec'
15 gem 'inspec'
Martin Polreich8957e952017-03-28 17:09:34 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin8192a0ad192017-03-16 15:38:13 +010017 - bundle install
18
19env:
Martin Polreiche9828362017-07-17 16:27:48 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=admin
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=admin
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=single_contrail
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=single_contrail
24 - PLATFORM=trevorj/salty-whales:trusty SUITE=single_general_service
25 - PLATFORM=trevorj/salty-whales:xenial SUITE=single_general_service
26 - PLATFORM=trevorj/salty-whales:trusty SUITE=single_openstack_service
27 - PLATFORM=trevorj/salty-whales:xenial SUITE=single_openstack_service
28 - PLATFORM=trevorj/salty-whales:trusty SUITE=stats
29 - PLATFORM=trevorj/salty-whales:xenial SUITE=stats
Martin Polreich8957e952017-03-28 17:09:34 +020030
Martin8192a0ad192017-03-16 15:38:13 +010031before_script:
Martin Polreich8957e952017-03-28 17:09:34 +020032 - set -o pipefail
33 - make test | tail
Martin8192a0ad192017-03-16 15:38:13 +010034
35script:
Martin Polreiche9828362017-07-17 16:27:48 +020036 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich8957e952017-03-28 17:09:34 +020037
38notifications:
39 webhooks:
40 urls:
41 - https://webhooks.gitter.im/e/6123573504759330786b
42 on_success: change # options: [always|never|change] default: always
43 on_failure: never # options: [always|never|change] default: always
44 on_start: never # options: [always|never|change] default: always
45 on_cancel: never # options: [always|never|change] default: always
46 on_error: never # options: [always|never|change] default: always
47 email: false