blob: 07735a214097e7ed117ed6240e27781c94c8cfbd [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 Polreichdbe17a12018-04-25 14:43:20 +020018 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=client
19 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=client
20 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=client
21 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=client
22 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=client
Martin Polreichdb17f712017-08-29 15:29:54 +020023
24before_script:
25 - set -o pipefail
26 - make test | tail
27
28script:
Martin Polreich78f96882018-01-05 13:29:38 +010029 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
30 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichdb17f712017-08-29 15:29:54 +020031
32notifications:
33 webhooks:
34 urls:
35 - https://webhooks.gitter.im/e/6123573504759330786b
36 on_success: change # options: [always|never|change] default: always
37 on_failure: never # options: [always|never|change] default: always
38 on_start: never # options: [always|never|change] default: always
39 on_cancel: never # options: [always|never|change] default: always
40 on_error: never # options: [always|never|change] default: always
41 email: false