blob: 20eb7279cd80d9ff676dc80fb20c7f5d07d3647b [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 - |
12 test -e Gemfile || cat <<EOF > Gemfile
13 source 'https://rubygems.org'
14 gem 'rake'
15 gem 'test-kitchen'
16 gem 'kitchen-docker'
17 gem 'kitchen-inspec'
Martin Polreichd4fe3252018-10-24 12:01:35 +020018 gem 'inspec', '<3.0.0'
19 #Version was frozen, because of issues in the version of inspec >3.0.0 -- see https://mirantis.jira.com/browse/PROD-24324 for more info
Martin Polreich86e381f2017-07-17 10:29:25 +020020 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin819a45fa092017-02-11 12:16:20 +010021 - bundle install
22
Martin Polreich86e381f2017-07-17 10:29:25 +020023env:
Martin Polreichdf3eb922018-04-06 14:08:06 +020024 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=ceph-client-single
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=ceph-mon-single
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=ceph-osd-single
27 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=ceph-client-single
28 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=ceph-mon-single
29 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=ceph-osd-single
30 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=ceph-client-single
31 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=ceph-mon-single
32 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=ceph-osd-single
33# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=ceph-client-single
34# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=ceph-mon-single
35# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=ceph-osd-single
36# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=ceph-client-single
37# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=ceph-mon-single
38# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=ceph-osd-single
Martin Polreich86e381f2017-07-17 10:29:25 +020039
Martin819a45fa092017-02-11 12:16:20 +010040before_script:
Martin819dadd3e22017-03-28 08:05:33 +020041 - set -o pipefail
Martin Polreich86e381f2017-07-17 10:29:25 +020042 - make test | tail
Martin819a45fa092017-02-11 12:16:20 +010043
44script:
Martin Polreichf5e655f2018-01-05 12:50:30 +010045 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
46 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich86e381f2017-07-17 10:29:25 +020047
48notifications:
49 webhooks:
50 urls:
51 - https://webhooks.gitter.im/e/6123573504759330786b
52 on_success: change # options: [always|never|change] default: always
53 on_failure: never # options: [always|never|change] default: always
54 on_start: never # options: [always|never|change] default: always
55 on_cancel: never # options: [always|never|change] default: always
56 on_error: never # options: [always|never|change] default: always
57 email: false