blob: 5589b3197f09b740f1a7e17985814fb0321a3ead [file] [log] [blame]
Martin81923e0eb42017-03-24 13:55:31 +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 Polreich05282372017-03-28 17:06:10 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin81923e0eb42017-03-24 13:55:31 +010017 - bundle install
18
19env:
Martin Polreich71983d72017-07-17 16:22:28 +020020 - PLATFORM=trevorj/salty-whales:xenial SUITE=agent_cluster
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=agent_single
22 - PLATFORM=trevorj/salty-whales:xenial SUITE=server_cluster
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=server_single
Martin Polreich05282372017-03-28 17:06:10 +020024
Martin81923e0eb42017-03-24 13:55:31 +010025before_script:
Martin Polreich05282372017-03-28 17:06:10 +020026 - set -o pipefail
27 - make test | tail
Martin81923e0eb42017-03-24 13:55:31 +010028
29script:
Martin Polreich71983d72017-07-17 16:22:28 +020030 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich05282372017-03-28 17:06:10 +020031
32notifications:
33 webhooks:
34 urls:
35 - https://webhooks.gitter.im/e/6123573504759330786b
36 on_success: change # options: [always|never|change] default: always
37 on_failure: never # options: [always|never|change] default: always
38 on_start: never # options: [always|never|change] default: always
39 on_cancel: never # options: [always|never|change] default: always
40 on_error: never # options: [always|never|change] default: always
41 email: false