blob: f42fc6d3d61283dbe4fd31410bc6488f75c49903 [file] [log] [blame]
Martin819ef24a2a2017-02-14 14:25:57 +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 Polreich12b77ce2017-03-28 16:54:56 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin819ef24a2a2017-02-14 14:25:57 +010017 - bundle install
18
Martin Polreich12b77ce2017-03-28 16:54:56 +020019env:
Oleh Hryhorovfc353c72018-01-18 17:23:09 +020020 - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=cluster
21 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=cluster
22 - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=single
23 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=single
Martin Polreich3ea841d2017-07-17 15:59:44 +020024 - PLATFORM=trevorj/salty-whales:trusty SUITE=cluster
25 - PLATFORM=trevorj/salty-whales:xenial SUITE=cluster
26 - PLATFORM=trevorj/salty-whales:trusty SUITE=single
27 - PLATFORM=trevorj/salty-whales:xenial SUITE=single
Martin Polreich12b77ce2017-03-28 16:54:56 +020028
Martin819ef24a2a2017-02-14 14:25:57 +010029before_script:
Martin Polreich12b77ce2017-03-28 16:54:56 +020030 - set -o pipefail
Martin819ef24a2a2017-02-14 14:25:57 +010031 - make test | tail
32
33script:
Martin Polreicha40bc2f2018-01-05 13:09:15 +010034 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
35 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich12b77ce2017-03-28 16:54:56 +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