| Petr Michalec | 5f41e6e | 2017-04-10 10:18:12 +0200 | [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' | 
|  | 16 | gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git' | 
|  | 17 | - bundle install | 
|  | 18 |  | 
|  | 19 | env: | 
| Martin Polreich | 6eab98a | 2017-07-25 13:54:32 +0200 | [diff] [blame] | 20 | - PLATFORM=trevorj/salty-whales:trusty OS_VERSION=mitaka SUITE=compute_cluster | 
|  | 21 | - PLATFORM=trevorj/salty-whales:trusty OS_VERSION=mitaka SUITE=control_cluster | 
|  | 22 | - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=mitaka SUITE=compute_cluster | 
|  | 23 | - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=mitaka SUITE=control_cluster | 
|  | 24 | - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=newton SUITE=compute_cluster | 
|  | 25 | - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=newton SUITE=control_cluster | 
|  | 26 | - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=ocata SUITE=compute_cluster | 
|  | 27 | - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=ocata SUITE=control_cluster | 
| Petr Michalec | 5f41e6e | 2017-04-10 10:18:12 +0200 | [diff] [blame] | 28 |  | 
|  | 29 | before_script: | 
|  | 30 | - set -o pipefail | 
|  | 31 | - make test | tail | 
|  | 32 |  | 
|  | 33 | script: | 
| Martin Polreich | 6eab98a | 2017-07-25 13:54:32 +0200 | [diff] [blame] | 34 | -  KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration | 
| Petr Michalec | 5f41e6e | 2017-04-10 10:18:12 +0200 | [diff] [blame] | 35 |  | 
|  | 36 | notifications: | 
|  | 37 | webhooks: | 
|  | 38 | urls: | 
|  | 39 | - https://webhooks.gitter.im/e/6123573504759330786b | 
|  | 40 | on_success: change  # options: [always|never|change] default: always | 
|  | 41 | on_failure: never  # options: [always|never|change] default: always | 
|  | 42 | on_start: never     # options: [always|never|change] default: always | 
|  | 43 | on_cancel: never    # options: [always|never|change] default: always | 
|  | 44 | on_error: never    # options: [always|never|change] default: always | 
|  | 45 | email: false |