blob: 22259c44e5602ce2602cc0a093e8f1744258c0f8 [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 - |
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 Polreich95bef282018-10-24 12:02:17 +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 Polreich12b77ce2017-03-28 16:54:56 +020020 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin819ef24a2a2017-02-14 14:25:57 +010021 - bundle install
22
Martin Polreich12b77ce2017-03-28 16:54:56 +020023env:
Martin Polreich4d2ef992018-04-18 10:50:01 +020024 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=cluster
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=single
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=cluster
27 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=single
28# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=cluster
29# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=single
30# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=cluster
31# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=single
Martin Polreich12b77ce2017-03-28 16:54:56 +020032
Martin819ef24a2a2017-02-14 14:25:57 +010033before_script:
Martin Polreich12b77ce2017-03-28 16:54:56 +020034 - set -o pipefail
Martin819ef24a2a2017-02-14 14:25:57 +010035 - make test | tail
36
37script:
Martin Polreicha40bc2f2018-01-05 13:09:15 +010038 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
39 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich12b77ce2017-03-28 16:54:56 +020040
41notifications:
42 webhooks:
43 urls:
44 - https://webhooks.gitter.im/e/6123573504759330786b
45 on_success: change # options: [always|never|change] default: always
46 on_failure: never # options: [always|never|change] default: always
47 on_start: never # options: [always|never|change] default: always
48 on_cancel: never # options: [always|never|change] default: always
49 on_error: never # options: [always|never|change] default: always
50 email: false