blob: a2b03afecf02a419aae2af63e96c5df7b36471a8 [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 Polreich611e6782018-11-20 15:07:32 +010018 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2016.3/salt:2018_11_19 SUITE=config
19 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19 SUITE=config
20 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19 SUITE=config
Martin Polreichba2460a2017-08-29 15:01:17 +020021
22before_script:
23 - set -o pipefail
24 - make test | tail
25
26script:
Martin Polreichd64ba082018-01-05 12:56:10 +010027 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
28 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichba2460a2017-08-29 15:01:17 +020029
30notifications:
31 webhooks:
32 urls:
33 - https://webhooks.gitter.im/e/6123573504759330786b
34 on_success: change # options: [always|never|change] default: always
35 on_failure: never # options: [always|never|change] default: always
36 on_start: never # options: [always|never|change] default: always
37 on_cancel: never # options: [always|never|change] default: always
38 on_error: never # options: [always|never|change] default: always
39 email: false