blob: 61b080e366a3f9beab65e65717fe861696b8505e [file] [log] [blame]
Martin Polreiche0592082017-05-15 12:32:11 +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-inspec'
15 gem 'inspec'
16 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
17 - bundle install
18
19env:
Martin Polreichdb269b02017-07-17 16:51:58 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=network
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=network
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=pool
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=pool
24 - PLATFORM=trevorj/salty-whales:trusty SUITE=simple
25 - PLATFORM=trevorj/salty-whales:xenial SUITE=simple
Martin Polreiche0592082017-05-15 12:32:11 +020026
27before_script:
28 - set -o pipefail
29 - make test | tail
30
31script:
Martin Polreichdb269b02017-07-17 16:51:58 +020032 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreiche0592082017-05-15 12:32:11 +020033
34notifications:
35 webhooks:
36 urls:
37 - https://webhooks.gitter.im/e/6123573504759330786b
38 on_success: change # options: [always|never|change] default: always
39 on_failure: never # options: [always|never|change] default: always
40 on_start: never # options: [always|never|change] default: always
41 on_cancel: never # options: [always|never|change] default: always
42 on_error: never # options: [always|never|change] default: always
43 email: false