blob: 7ed0bdb2a82cd79a64856108fb6165999559b870 [file] [log] [blame]
Petr Michalec579e64d2017-03-24 12:54:29 +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-vagrant'
15 gem 'kitchen-inspec'
16 gem 'inspec'
Martin Polreich9ea2c472017-04-06 09:59:10 +020017 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalec579e64d2017-03-24 12:54:29 +010018 - bundle install
19
20env:
Marek Celoud29536242017-05-23 16:14:52 +020021 - PLATFORM=trevorj/salty-whales:trusty
22 - PLATFORM=trevorj/salty-whales:trusty OC_REPO=oc323
23 - OC_REPO=oc323
24 - PLATFORM=trevorj/salty-whales:trusty OC_REPO=oc40 OC_VERSION=4_0
25 - OC_REPO=oc40 OC_VERSION=4_0
Petr Michalec579e64d2017-03-24 12:54:29 +010026
27before_script:
Martin Polreich9ea2c472017-04-06 09:59:10 +020028 - set -o pipefail
Petr Michalec579e64d2017-03-24 12:54:29 +010029 - make test | tail
30
31script:
Martin Polreich9ea2c472017-04-06 09:59:10 +020032 - test ! -e .kitchen.yml || bundle exec kitchen converge $SUITE || true
33 - test ! -e .kitchen.yml || bundle exec kitchen verify $SUITE -t tests/integration
Petr Michalec579e64d2017-03-24 12:54:29 +010034
Martin Polreich9ea2c472017-04-06 09:59:10 +020035notifications:
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