Petr Michalec | 579e64d | 2017-03-24 12:54:29 +0100 | [diff] [blame] | 1 | sudo: required |
| 2 | services: |
| 3 | - docker |
| 4 | |
| 5 | install: |
| 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 Polreich | 9ea2c47 | 2017-04-06 09:59:10 +0200 | [diff] [blame] | 17 | gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git' |
Petr Michalec | 579e64d | 2017-03-24 12:54:29 +0100 | [diff] [blame] | 18 | - bundle install |
| 19 | |
| 20 | env: |
Marek Celoud | 2953624 | 2017-05-23 16:14:52 +0200 | [diff] [blame] | 21 | - 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 Michalec | 579e64d | 2017-03-24 12:54:29 +0100 | [diff] [blame] | 26 | |
| 27 | before_script: |
Martin Polreich | 9ea2c47 | 2017-04-06 09:59:10 +0200 | [diff] [blame] | 28 | - set -o pipefail |
Petr Michalec | 579e64d | 2017-03-24 12:54:29 +0100 | [diff] [blame] | 29 | - make test | tail |
| 30 | |
| 31 | script: |
Martin Polreich | 9ea2c47 | 2017-04-06 09:59:10 +0200 | [diff] [blame] | 32 | - test ! -e .kitchen.yml || bundle exec kitchen converge $SUITE || true |
| 33 | - test ! -e .kitchen.yml || bundle exec kitchen verify $SUITE -t tests/integration |
Petr Michalec | 579e64d | 2017-03-24 12:54:29 +0100 | [diff] [blame] | 34 | |
Martin Polreich | 9ea2c47 | 2017-04-06 09:59:10 +0200 | [diff] [blame] | 35 | notifications: |
| 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 |