| sudo: required |
| services: |
| - docker |
| |
| install: |
| - git fetch --unshallow --tags |
| - pip install PyYAML |
| - pip install virtualenv |
| - pip install reno |
| - | |
| if [ ! -e Gemfile ]; then |
| curl -s -o ./Gemfile 'https://gerrit.mcp.mirantis.com/gitweb?p=salt-formulas/salt-formulas-scripts.git;a=blob_plain;f=Gemfile;hb=refs/heads/master' |
| fi |
| - bundle install |
| |
| env: |
| - PLATFORM=trevorj/salty-whales:trusty |
| - PLATFORM=trevorj/salty-whales:xenial |
| |
| before_script: |
| - set -o pipefail |
| - make test | tail |
| - reno lint $PWD | tail |
| |
| script: |
| - test ! -e .kitchen.yml || bundle exec kitchen test -t tests/integration |
| |
| notifications: |
| webhooks: |
| urls: |
| - https://webhooks.gitter.im/e/6123573504759330786b |
| on_success: change # options: [always|never|change] default: always |
| on_failure: never # options: [always|never|change] default: always |
| on_start: never # options: [always|never|change] default: always |
| on_cancel: never # options: [always|never|change] default: always |
| on_error: never # options: [always|never|change] default: always |
| email: false |