blob: db38465f6137614808ca2d3c71ee6ac5e2016d7c [file] [log] [blame]
Martin Polreichf019f5c2018-06-21 15:31:06 +02001language: python
2python:
3- "2.7.13"
Martin819584f6dd2017-03-21 15:32:04 +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 Polreich29d974e2018-10-24 12:15:32 +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, '<3.0.0', '<3.0.0'
Martin Polreichfa3ac802017-03-28 17:16:35 +020020 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin819584f6dd2017-03-21 15:32:04 +010021 - bundle install
22
23env:
Martin Polreich93038b82018-04-25 14:57:18 +020024 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=postgresql-server
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=postgresql-client
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=postgresql-server
27 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=postgresql-client
28 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=postgresql-server
29 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=postgresql-client
30 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=postgresql-server
31 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=postgresql-client
32 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=postgresql-server
33 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=postgresql-client
Martin Polreichfa3ac802017-03-28 17:16:35 +020034
Martin819584f6dd2017-03-21 15:32:04 +010035before_script:
Martin819574df2c2017-03-28 08:42:36 +020036 - set -o pipefail
37 - make test | tail
Martin819584f6dd2017-03-21 15:32:04 +010038
39script:
Martin Polreich2ef2aa92018-01-05 13:31:08 +010040 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
41 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichfa3ac802017-03-28 17:16:35 +020042
43notifications:
44 webhooks:
45 urls:
46 - https://webhooks.gitter.im/e/6123573504759330786b
47 on_success: change # options: [always|never|change] default: always
48 on_failure: never # options: [always|never|change] default: always
49 on_start: never # options: [always|never|change] default: always
50 on_cancel: never # options: [always|never|change] default: always
51 on_error: never # options: [always|never|change] default: always
52 email: false