blob: 3667cec4745a4f65820d0119ee35c247fc95b8c5 [file] [log] [blame]
Martin Polreich0446f712018-06-21 15:29:14 +02001language: python
2python:
3- "2.7.13"
Martin819ef24a2a2017-02-14 14:25:57 +01004sudo: required
5services:
6 - docker
7
8install:
9 - pip install PyYAML
10 - pip install virtualenv
11 - |
Martin Polreichbebbf522018-11-07 14:43:00 +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
Martin819ef24a2a2017-02-14 14:25:57 +010015 - bundle install
16
Martin Polreich12b77ce2017-03-28 16:54:56 +020017env:
Martin Polreich4d2ef992018-04-18 10:50:01 +020018 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=cluster
19 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=single
20 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=cluster
21 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=single
22# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=cluster
23# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=single
24# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=cluster
25# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=single
Martin Polreich12b77ce2017-03-28 16:54:56 +020026
Martin819ef24a2a2017-02-14 14:25:57 +010027before_script:
Martin Polreich12b77ce2017-03-28 16:54:56 +020028 - set -o pipefail
Martin819ef24a2a2017-02-14 14:25:57 +010029 - make test | tail
30
31script:
Martin Polreicha40bc2f2018-01-05 13:09:15 +010032 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
33 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich12b77ce2017-03-28 16:54:56 +020034
35notifications:
36 webhooks:
37 urls:
38 - https://webhooks.gitter.im/e/6123573504759330786b
39 on_success: change # options: [always|never|change] default: always
40 on_failure: never # options: [always|never|change] default: always
41 on_start: never # options: [always|never|change] default: always
42 on_cancel: never # options: [always|never|change] default: always
43 on_error: never # options: [always|never|change] default: always
44 email: false