blob: b367f1f40a2a7f68e53f1f0f024f811d72797e52 [file] [log] [blame]
Martin Polreich935a51c2017-04-04 16:08:07 +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 Polreich687ed822018-01-22 11:04:43 +010020 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=default
Martin Polreich935a51c2017-04-04 16:08:07 +020021
22before_script:
23 - set -o pipefail
24 - make test | tail
25
26script:
Martin Polreichc006b8d2018-01-05 12:43:00 +010027 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
28 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich935a51c2017-04-04 16:08:07 +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