blob: 86158c54b950e891c9b7c4eaa226f98410f4a2cc [file] [log] [blame]
Martin Polreich5cbc5492018-06-21 15:28:02 +02001language: python
2python:
3- "2.7.13"
Martin819d8111e62017-03-24 11:27:43 +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 Polreich9001d1b2018-10-24 12:01:40 +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 Polreich448a9ff2017-03-28 17:04:23 +020020 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin819d8111e62017-03-24 11:27:43 +010021 - bundle install
22
23env:
Martin Polreich94f48c42018-04-06 14:59:54 +020024 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=client
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=client
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=client
27# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=client
28# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=client
Martin Polreich448a9ff2017-03-28 17:04:23 +020029
Martin819d8111e62017-03-24 11:27:43 +010030before_script:
Martin Polreich448a9ff2017-03-28 17:04:23 +020031 - set -o pipefail
32 - make test | tail
Martin819d8111e62017-03-24 11:27:43 +010033
34script:
Martin Polreich4ea1f4e2018-01-05 12:55:22 +010035 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
36 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich448a9ff2017-03-28 17:04:23 +020037
38notifications:
39 webhooks:
40 urls:
41 - https://webhooks.gitter.im/e/6123573504759330786b
42 on_success: change # options: [always|never|change] default: always
43 on_failure: never # options: [always|never|change] default: always
44 on_start: never # options: [always|never|change] default: always
45 on_cancel: never # options: [always|never|change] default: always
46 on_error: never # options: [always|never|change] default: always
47 email: false