blob: 16cd706860e1dc0d1ab56e41407d0c4fc5623688 [file] [log] [blame]
Martin Polreichba2460a2017-08-29 15:01:17 +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:
20 - PLATFORM=trevorj/salty-whales:trusty SUITE=config
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=config
22
23before_script:
24 - set -o pipefail
25 - make test | tail
26
27script:
Martin Polreichd64ba082018-01-05 12:56:10 +010028 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
29 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichba2460a2017-08-29 15:01:17 +020030
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