blob: e477a5855d5878c347b6cac5b86dd12349eae7c6 [file] [log] [blame]
Martin Polreich004c0e72018-06-21 15:28:16 +02001language: python
2python:
3- "2.7.13"
Martin Polreichba2460a2017-08-29 15:01:17 +02004sudo: 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 Polreichc38601e2018-10-24 12:01:49 +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 Polreichba2460a2017-08-29 15:01:17 +020020 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
21 - bundle install
22
23env:
Martin Polreich61ffa052018-04-06 15:18:53 +020024 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=config
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=config
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=config
27# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=config
28# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=config
29
Martin Polreichba2460a2017-08-29 15:01:17 +020030
31before_script:
32 - set -o pipefail
33 - make test | tail
34
35script:
Martin Polreichd64ba082018-01-05 12:56:10 +010036 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
37 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichba2460a2017-08-29 15:01:17 +020038
39notifications:
40 webhooks:
41 urls:
42 - https://webhooks.gitter.im/e/6123573504759330786b
43 on_success: change # options: [always|never|change] default: always
44 on_failure: never # options: [always|never|change] default: always
45 on_start: never # options: [always|never|change] default: always
46 on_cancel: never # options: [always|never|change] default: always
47 on_error: never # options: [always|never|change] default: always
48 email: false