blob: f13f079df15f19354690a814f32cc2978f2fb6b9 [file] [log] [blame]
Petr Jedinýdd6387a2017-08-01 15:50: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:
Martin Polreichb9481722018-01-22 12:08:23 +010020 - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=ssl
21 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=ssl
22 - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=control-single
23 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=control-single
24 - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=control-cluster
25 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=control-cluster
Petr Jedinýdd6387a2017-08-01 15:50:17 +020026
27before_script:
28 - set -o pipefail
29 - make test | tail
30
31script:
Martin Polreichb9481722018-01-22 12:08:23 +010032 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
33 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Petr Jedinýdd6387a2017-08-01 15:50:17 +020034
35notifications:
36 webhooks:
37 urls:
38 - https://webhooks.gitter.im/e/6123573504759330786b
39 on_success: change # options: [always|never|change] default: always
40 on_failure: never # options: [always|never|change] default: always
41 on_start: never # options: [always|never|change] default: always
42 on_cancel: never # options: [always|never|change] default: always
43 on_error: never # options: [always|never|change] default: always
44 email: false