Martin Polreich | 1dbadf5 | 2017-05-17 15:01:11 +0200 | [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-inspec' |
| 15 | gem 'inspec' |
| 16 | gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git' |
| 17 | - bundle install |
| 18 | |
| 19 | env: |
Martin Polreich | 8cccbd3 | 2017-08-25 12:16:45 +0200 | [diff] [blame] | 20 | - PLATFORM=trevorj/salty-whales:trusty SUITE=openjdk-7 |
| 21 | - PLATFORM=trevorj/salty-whales:trusty SUITE=oracle-jdk-7 |
| 22 | - PLATFORM=trevorj/salty-whales:xenial SUITE=openjdk-8 |
| 23 | - PLATFORM=trevorj/salty-whales:xenial SUITE=oracle-jdk-8 |
Martin Polreich | 1dbadf5 | 2017-05-17 15:01:11 +0200 | [diff] [blame] | 24 | |
| 25 | before_script: |
| 26 | - set -o pipefail |
| 27 | - make test | tail |
| 28 | |
| 29 | script: |
Martin Polreich | 8cccbd3 | 2017-08-25 12:16:45 +0200 | [diff] [blame] | 30 | - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration |
Martin Polreich | 1dbadf5 | 2017-05-17 15:01:11 +0200 | [diff] [blame] | 31 | |
| 32 | notifications: |
| 33 | webhooks: |
| 34 | urls: |
| 35 | - https://webhooks.gitter.im/e/6123573504759330786b |
| 36 | on_success: change # options: [always|never|change] default: always |
| 37 | on_failure: never # options: [always|never|change] default: always |
| 38 | on_start: never # options: [always|never|change] default: always |
| 39 | on_cancel: never # options: [always|never|change] default: always |
| 40 | on_error: never # options: [always|never|change] default: always |
Martin Polreich | a66ab06 | 2017-08-08 14:03:01 +0200 | [diff] [blame] | 41 | email: false |