blob: 7a75f907f3935be8d98191c963472ac830d06efd [file] [log] [blame]
Martin Polreich004c0e72018-06-21 15:28:16 +02001language: python
2python:
3- "2.7.13"
Martin Polreichba2460a2017-08-29 15:01:17 +02004sudo: required
5services:
6 - docker
7
8install:
9 - pip install PyYAML
10 - pip install virtualenv
11 - |
Martin Polreichcd57a9a2018-11-07 14:42:12 +010012 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
Martin Polreichba2460a2017-08-29 15:01:17 +020015 - bundle install
16
17env:
Martin Polreich61ffa052018-04-06 15:18:53 +020018 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=config
19 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=config
20 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=config
21# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=config
22# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=config
23
Martin Polreichba2460a2017-08-29 15:01:17 +020024
25before_script:
26 - set -o pipefail
27 - make test | tail
28
29script:
Martin Polreichd64ba082018-01-05 12:56:10 +010030 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
31 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichba2460a2017-08-29 15:01:17 +020032
33notifications:
34 webhooks:
35 urls:
36 - https://webhooks.gitter.im/e/6123573504759330786b
37 on_success: change # options: [always|never|change] default: always
38 on_failure: never # options: [always|never|change] default: always
39 on_start: never # options: [always|never|change] default: always
40 on_cancel: never # options: [always|never|change] default: always
41 on_error: never # options: [always|never|change] default: always
42 email: false