Martin Polreich | bc9dcc5 | 2018-06-21 15:29:32 +0200 | [diff] [blame] | 1 | language: python |
| 2 | python: |
| 3 | - "2.7.13" |
Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 4 | sudo: required |
| 5 | services: |
| 6 | - docker |
| 7 | |
| 8 | install: |
| 9 | - pip install PyYAML |
| 10 | - pip install virtualenv |
| 11 | - | |
Martin Polreich | 0f0b7c2 | 2018-11-07 14:43:20 +0100 | [diff] [blame^] | 12 | if [ ! -e Gemfile ]; then |
| 13 | 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' |
| 14 | fi |
Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 15 | - bundle install |
| 16 | |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 17 | env: |
Martin Polreich | a22250b | 2018-04-18 11:23:56 +0200 | [diff] [blame] | 18 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=keepalived-cluster |
| 19 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=keepalived-cluster |
| 20 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=keepalived-cluster |
| 21 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=keepalived-cluster |
| 22 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=keepalived-cluster |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 23 | |
Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 24 | before_script: |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +0200 | [diff] [blame] | 25 | - set -o pipefail |
Martin819 | 648c7a4 | 2017-02-16 09:52:53 +0100 | [diff] [blame] | 26 | - make test | tail |
Martin819 | 6b937d7 | 2017-02-10 15:45:43 +0100 | [diff] [blame] | 27 | |
| 28 | script: |
Martin Polreich | edfeca1 | 2018-01-05 13:11:12 +0100 | [diff] [blame] | 29 | - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true |
| 30 | - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration |
Martin Polreich | 93111a8 | 2017-03-28 16:53:00 +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 |
| 41 | email: false |