blob: 577330ba65145ac347a77aeec006af69b767439b [file] [log] [blame]
Petr Michalec35277532017-02-28 23:16:58 +01001sudo: required
2services:
3 - docker
4
Petr Michalec69693222017-04-13 09:59:27 +02005addons:
6 apt:
7 packages:
8 - apt-transport-https
9
Petr Michalec35277532017-02-28 23:16:58 +010010install:
11 - pip install PyYAML
12 - pip install virtualenv
13 - |
14 test -e Gemfile || cat <<EOF > Gemfile
15 source 'https://rubygems.org'
16 gem 'rake'
17 gem 'test-kitchen'
18 gem 'kitchen-docker'
19 gem 'kitchen-inspec'
20 gem 'inspec'
Martin Polreichf0d157b2017-03-28 16:43:40 +020021 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalec35277532017-02-28 23:16:58 +010022 - bundle install
23
24env:
Martin Polreichf0d157b2017-03-28 16:43:40 +020025 - PLATFORM=trevorj/salty-whales:trusty
26 - PLATFORM=trevorj/salty-whales:xenial
27
Petr Michalec35277532017-02-28 23:16:58 +010028
29before_script:
Martin Polreichf0d157b2017-03-28 16:43:40 +020030 - set -o pipefail
Petr Michalec35277532017-02-28 23:16:58 +010031 - make test | tail
32
33script:
34 - test ! -e .kitchen.yml || bundle exec kitchen converge || true
35 - test ! -e .kitchen.yml || bundle exec kitchen verify -t tests/integration
Martin Polreichf0d157b2017-03-28 16:43:40 +020036
37notifications:
38 webhooks:
39 urls:
40 - https://webhooks.gitter.im/e/6123573504759330786b
41 on_success: change # options: [always|never|change] default: always
42 on_failure: never # options: [always|never|change] default: always
43 on_start: never # options: [always|never|change] default: always
44 on_cancel: never # options: [always|never|change] default: always
45 on_error: never # options: [always|never|change] default: always
46 email: false