blob: 8ad569bcc47ab7ddb50957f3118901d91ce9a68e [file] [log] [blame]
Martin Polreich9667f852017-04-11 13:11:34 +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 Polreich3c7b3142017-08-25 11:51:55 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=kibana_server
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=kibana_server
Martin Polreich9667f852017-04-11 13:11:34 +020022
23before_script:
24 - set -o pipefail
25 - make test | tail
26
27script:
Martin Polreich3c7b3142017-08-25 11:51:55 +020028 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich9667f852017-04-11 13:11:34 +020029
30notifications:
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