blob: 4f34af25c0e6d72c7cc5028b1dc30ef185fc37d5 [file] [log] [blame]
Martin8199c78d942017-02-21 16:03:34 +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 Polreich045e0602017-03-28 16:58:15 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin8199c78d942017-02-21 16:03:34 +010017 - bundle install
18
19env:
Martin Polreich045e0602017-03-28 16:58:15 +020020 - PLATFORM=trevorj/salty-whales:trusty
21 - PLATFORM=trevorj/salty-whales:xenial
Martin8199c78d942017-02-21 16:03:34 +010022
23
24before_script:
Martin Polreich045e0602017-03-28 16:58:15 +020025 - set -o pipefail
Martin8199c78d942017-02-21 16:03:34 +010026 - make test | tail
27
28script:
Martin Polreich045e0602017-03-28 16:58:15 +020029 - test ! -e .kitchen.yml || bundle exec kitchen test -t tests/integration
30
31notifications:
32 webhooks:
33 urls:
34 - https://webhooks.gitter.im/e/6123573504759330786b
35 on_success: change # options: [always|never|change] default: always
36 on_failure: never # options: [always|never|change] default: always
37 on_start: never # options: [always|never|change] default: always
38 on_cancel: never # options: [always|never|change] default: always
39 on_error: never # options: [always|never|change] default: always
40 email: false