Martin Polreich | 0446f71 | 2018-06-21 15:29:14 +0200 | [diff] [blame] | 1 | language: python |
| 2 | python: |
| 3 | - "2.7.13" |
Martin819 | ef24a2a | 2017-02-14 14:25:57 +0100 | [diff] [blame] | 4 | sudo: required |
| 5 | services: |
| 6 | - docker |
| 7 | |
| 8 | install: |
| 9 | - pip install PyYAML |
| 10 | - pip install virtualenv |
| 11 | - | |
Martin Polreich | bebbf52 | 2018-11-07 14:43:00 +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 | ef24a2a | 2017-02-14 14:25:57 +0100 | [diff] [blame] | 15 | - bundle install |
| 16 | |
Martin Polreich | 12b77ce | 2017-03-28 16:54:56 +0200 | [diff] [blame] | 17 | env: |
Martin Polreich | 4d2ef99 | 2018-04-18 10:50:01 +0200 | [diff] [blame] | 18 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=cluster |
| 19 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=single |
| 20 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=cluster |
| 21 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=single |
| 22 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=cluster |
| 23 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=single |
| 24 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=cluster |
| 25 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=single |
Martin Polreich | 12b77ce | 2017-03-28 16:54:56 +0200 | [diff] [blame] | 26 | |
Martin819 | ef24a2a | 2017-02-14 14:25:57 +0100 | [diff] [blame] | 27 | before_script: |
Martin Polreich | 12b77ce | 2017-03-28 16:54:56 +0200 | [diff] [blame] | 28 | - set -o pipefail |
Martin819 | ef24a2a | 2017-02-14 14:25:57 +0100 | [diff] [blame] | 29 | - make test | tail |
| 30 | |
| 31 | script: |
Martin Polreich | a40bc2f | 2018-01-05 13:09:15 +0100 | [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 |
Martin Polreich | 12b77ce | 2017-03-28 16:54:56 +0200 | [diff] [blame] | 34 | |
| 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 |