blob: 2373a24b7e330c01d6d97f5739f9d9e7dc80fc24 [file] [log] [blame]
Martin Polreich95e54fa2018-06-21 15:27:58 +02001language: python
2python:
3- "2.7.13"
Martin819a45fa092017-02-11 12:16:20 +01004sudo: required
5services:
6 - docker
7
8install:
9 - pip install PyYAML
10 - pip install virtualenv
11 - |
Martin Polreich535cc9d2018-11-07 14:41:56 +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
Martin819a45fa092017-02-11 12:16:20 +010015 - bundle install
16
Martin Polreich86e381f2017-07-17 10:29:25 +020017env:
Martin Polreichdf3eb922018-04-06 14:08:06 +020018 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=ceph-client-single
19 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=ceph-mon-single
20 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=ceph-osd-single
21 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=ceph-client-single
22 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=ceph-mon-single
23 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=ceph-osd-single
24 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=ceph-client-single
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=ceph-mon-single
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=ceph-osd-single
27# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=ceph-client-single
28# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=ceph-mon-single
29# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=ceph-osd-single
30# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=ceph-client-single
31# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=ceph-mon-single
32# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=ceph-osd-single
Martin Polreich86e381f2017-07-17 10:29:25 +020033
Martin819a45fa092017-02-11 12:16:20 +010034before_script:
Martin819dadd3e22017-03-28 08:05:33 +020035 - set -o pipefail
Martin Polreich86e381f2017-07-17 10:29:25 +020036 - make test | tail
Martin819a45fa092017-02-11 12:16:20 +010037
38script:
Martin Polreichf5e655f2018-01-05 12:50:30 +010039 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
40 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich86e381f2017-07-17 10:29:25 +020041
42notifications:
43 webhooks:
44 urls:
45 - https://webhooks.gitter.im/e/6123573504759330786b
46 on_success: change # options: [always|never|change] default: always
47 on_failure: never # options: [always|never|change] default: always
48 on_start: never # options: [always|never|change] default: always
49 on_cancel: never # options: [always|never|change] default: always
50 on_error: never # options: [always|never|change] default: always
51 email: false