blob: 3afcf15a2b1f025b189257877bfdace500070f88 [file] [log] [blame]
Martin81906960192017-03-24 15:38:59 +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 Polreiche8a98392017-03-28 17:07:37 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin81906960192017-03-24 15:38:59 +010017 - bundle install
18
19env:
Martin Polreich0c1188c2017-08-24 18:36:41 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=client
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=client
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=server
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=server
Martin Polreiche8a98392017-03-28 17:07:37 +020024
Martin81906960192017-03-24 15:38:59 +010025before_script:
Martin Polreiche8a98392017-03-28 17:07:37 +020026 - set -o pipefail
27 - make test | tail
Martin81906960192017-03-24 15:38:59 +010028
29script:
Martin Polreich0c1188c2017-08-24 18:36:41 +020030 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreiche8a98392017-03-28 17:07:37 +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