Martin Polreich | 1b29239 | 2018-09-13 16:04:51 +0200 | [diff] [blame] | 1 | language: python |
| 2 | python: |
| 3 | - "2.7.13" |
Petr Michalec | 3527753 | 2017-02-28 23:16:58 +0100 | [diff] [blame] | 4 | sudo: required |
| 5 | services: |
| 6 | - docker |
| 7 | |
Petr Michalec | 6969322 | 2017-04-13 09:59:27 +0200 | [diff] [blame] | 8 | addons: |
| 9 | apt: |
| 10 | packages: |
| 11 | - apt-transport-https |
| 12 | |
Petr Michalec | 3527753 | 2017-02-28 23:16:58 +0100 | [diff] [blame] | 13 | install: |
| 14 | - pip install PyYAML |
| 15 | - pip install virtualenv |
| 16 | - | |
Martin Polreich | e9b72f3 | 2018-11-07 14:43:36 +0100 | [diff] [blame] | 17 | if [ ! -e Gemfile ]; then |
| 18 | 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' |
| 19 | fi |
Petr Michalec | 3527753 | 2017-02-28 23:16:58 +0100 | [diff] [blame] | 20 | - bundle install |
| 21 | |
| 22 | env: |
Martin Polreich | 69ce499 | 2018-04-18 15:32:09 +0200 | [diff] [blame] | 23 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=network |
| 24 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=system |
| 25 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=network |
| 26 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=system |
| 27 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=network |
| 28 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=system |
Gleb Galkin | 93b9ae9 | 2018-10-18 13:57:30 +0300 | [diff] [blame] | 29 | - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=duo |
Martin Polreich | 69ce499 | 2018-04-18 15:32:09 +0200 | [diff] [blame] | 30 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=network |
| 31 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=system |
| 32 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=network |
| 33 | # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=system |
Petr Michalec | 3527753 | 2017-02-28 23:16:58 +0100 | [diff] [blame] | 34 | |
| 35 | before_script: |
Martin Polreich | f0d157b | 2017-03-28 16:43:40 +0200 | [diff] [blame] | 36 | - set -o pipefail |
Petr Michalec | 3527753 | 2017-02-28 23:16:58 +0100 | [diff] [blame] | 37 | - make test | tail |
| 38 | |
| 39 | script: |
Martin Polreich | fcee6e4 | 2018-01-05 13:22:16 +0100 | [diff] [blame] | 40 | - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true |
| 41 | - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration |
Martin Polreich | f0d157b | 2017-03-28 16:43:40 +0200 | [diff] [blame] | 42 | |
| 43 | notifications: |
| 44 | webhooks: |
| 45 | urls: |
| 46 | - https://webhooks.gitter.im/e/6123573504759330786b |
| 47 | on_success: change # options: [always|never|change] default: always |
| 48 | on_failure: never # options: [always|never|change] default: always |
| 49 | on_start: never # options: [always|never|change] default: always |
| 50 | on_cancel: never # options: [always|never|change] default: always |
| 51 | on_error: never # options: [always|never|change] default: always |
| 52 | email: false |