Martin Polreich | 5443cad | 2018-06-21 15:30:36 +0200 | [diff] [blame] | 1 | language: python |
| 2 | python: |
| 3 | - "2.7.13" |
Martin819 | 0696019 | 2017-03-24 15:38:59 +0100 | [diff] [blame] | 4 | sudo: required |
| 5 | services: |
| 6 | - docker |
| 7 | |
| 8 | install: |
| 9 | - pip install PyYAML |
| 10 | - pip install virtualenv |
| 11 | - | |
Martin Polreich | 42a8704 | 2018-11-07 14:44:08 +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 | 0696019 | 2017-03-24 15:38:59 +0100 | [diff] [blame] | 15 | - bundle install |
| 16 | |
| 17 | env: |
Martin Polreich | a370691 | 2018-04-25 14:09:58 +0200 | [diff] [blame] | 18 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=client |
| 19 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=client-auth |
| 20 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=server |
| 21 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=server-auth |
| 22 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=client |
| 23 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=client-auth |
| 24 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=server |
| 25 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=server-auth |
| 26 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=client |
| 27 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=client-auth |
| 28 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=server |
| 29 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=server-auth |
| 30 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=client |
| 31 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=client-auth |
| 32 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=server |
| 33 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=server-auth |
| 34 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=client |
| 35 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=client-auth |
| 36 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=server |
| 37 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=server-auth |
Martin Polreich | e8a9839 | 2017-03-28 17:07:37 +0200 | [diff] [blame] | 38 | |
Martin819 | 0696019 | 2017-03-24 15:38:59 +0100 | [diff] [blame] | 39 | before_script: |
Martin Polreich | e8a9839 | 2017-03-28 17:07:37 +0200 | [diff] [blame] | 40 | - set -o pipefail |
| 41 | - make test | tail |
Martin819 | 0696019 | 2017-03-24 15:38:59 +0100 | [diff] [blame] | 42 | |
| 43 | script: |
Martin Polreich | 09bc179 | 2018-01-05 13:28:15 +0100 | [diff] [blame] | 44 | - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true |
| 45 | - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration |
Martin Polreich | e8a9839 | 2017-03-28 17:07:37 +0200 | [diff] [blame] | 46 | |
| 47 | notifications: |
| 48 | webhooks: |
| 49 | urls: |
| 50 | - https://webhooks.gitter.im/e/6123573504759330786b |
| 51 | on_success: change # options: [always|never|change] default: always |
| 52 | on_failure: never # options: [always|never|change] default: always |
| 53 | on_start: never # options: [always|never|change] default: always |
| 54 | on_cancel: never # options: [always|never|change] default: always |
| 55 | on_error: never # options: [always|never|change] default: always |
| 56 | email: false |