blob: 2042e1dc8bcee2a0b95cc19c96c168f0404e4cf1 [file] [log] [blame]
Martin81906960192017-03-24 15:38:59 +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 Polreiche8a98392017-03-28 17:07:37 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin81906960192017-03-24 15:38:59 +010017 - bundle install
18
19env:
Martin Polreich0c1188c2017-08-24 18:36:41 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=client
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=client
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=server
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=server
Martin Polreiche8a98392017-03-28 17:07:37 +020024
Martin81906960192017-03-24 15:38:59 +010025before_script:
Martin Polreiche8a98392017-03-28 17:07:37 +020026 - set -o pipefail
27 - make test | tail
Martin81906960192017-03-24 15:38:59 +010028
29script:
Martin Polreich09bc1792018-01-05 13:28:15 +010030 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
31 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreiche8a98392017-03-28 17:07:37 +020032
33notifications:
34 webhooks:
35 urls:
36 - https://webhooks.gitter.im/e/6123573504759330786b
37 on_success: change # options: [always|never|change] default: always
38 on_failure: never # options: [always|never|change] default: always
39 on_start: never # options: [always|never|change] default: always
40 on_cancel: never # options: [always|never|change] default: always
41 on_error: never # options: [always|never|change] default: always
42 email: false