blob: 99b0ecb86af70b9e519ef56cc01984aac2b9ba4c [file] [log] [blame]
Martin81907885fc2017-03-21 15:40:39 +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 Polreichbf493332017-03-28 17:17:17 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin81907885fc2017-03-21 15:40:39 +010017 - bundle install
18
19env:
Martin Polreich5219e682017-08-25 11:58:43 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=client_single
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=client_single
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=server_single
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=server_single
Martin Polreichbf493332017-03-28 17:17:17 +020024
Martin81907885fc2017-03-21 15:40:39 +010025before_script:
Martin819d47757d2017-03-28 08:36:40 +020026 - set -o pipefail
27 - make test | tail
Martin81907885fc2017-03-21 15:40:39 +010028
29script:
Martin Polreich5219e682017-08-25 11:58:43 +020030 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreichbf493332017-03-28 17:17:17 +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