Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 1 | sudo: required |
| 2 | services: |
| 3 | - docker |
| 4 | |
| 5 | install: |
| 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 Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 16 | gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git' |
Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 17 | - bundle install |
| 18 | |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 19 | env: |
Martin Polreich | 0084a2d | 2017-08-24 18:21:57 +0200 | [diff] [blame] | 20 | - PLATFORM=trevorj/salty-whales:trusty SUITE=keepalived_cluster |
| 21 | - PLATFORM=trevorj/salty-whales:xenial SUITE=keepalived_cluster |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 22 | |
Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 23 | before_script: |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 24 | - set -o pipefail |
Martin819 | 648c7a4 | 2017-02-16 09:52:53 +0100 | [diff] [blame] | 25 | - make test | tail |
Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 26 | |
| 27 | script: |
Martin Polreich | 0084a2d | 2017-08-24 18:21:57 +0200 | [diff] [blame] | 28 | - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 29 | |
| 30 | notifications: |
| 31 | webhooks: |
| 32 | urls: |
| 33 | - https://webhooks.gitter.im/e/6123573504759330786b |
| 34 | on_success: change # options: [always|never|change] default: always |
| 35 | on_failure: never # options: [always|never|change] default: always |
| 36 | on_start: never # options: [always|never|change] default: always |
| 37 | on_cancel: never # options: [always|never|change] default: always |
| 38 | on_error: never # options: [always|never|change] default: always |
| 39 | email: false |