blob: 36e4da859bf35a46c23e53035bfbc8ee0456c497 [file] [log] [blame]
Martin Polreichab6a97c2018-06-21 15:30:47 +02001language: python
2python:
3- "2.7.13"
Martin Polreichdb17f712017-08-29 15:29:54 +02004sudo: required
5services:
6 - docker
7
8install:
9 - pip install PyYAML
10 - pip install virtualenv
11 - |
Martin Polreichb081eb12018-11-07 14:44:15 +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 Polreichdb17f712017-08-29 15:29:54 +020015 - bundle install
16
17env:
Martin Polreichbf63d5e2018-11-20 15:09:58 +010018 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2016.3/salt:2018_11_19 SUITE=client
19 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19 SUITE=client
20 - PLATFORM=docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19 SUITE=client
Martin Polreichdb17f712017-08-29 15:29:54 +020021
22before_script:
23 - set -o pipefail
24 - make test | tail
25
26script:
Martin Polreich78f96882018-01-05 13:29:38 +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 Polreichdb17f712017-08-29 15:29:54 +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