blob: 29a47a518635b773ca4026f02efee3160d0d9732 [file] [log] [blame]
Martin Polreich0d51ce42018-06-21 15:28:45 +02001language: python
2python:
3- "2.7.13"
Petr Michalec39f3dfb2017-02-10 12:08:30 +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 Polreich76c1ad32018-10-24 12:02:06 +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 Polreich211aa552017-07-17 10:41:23 +020020 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalec39f3dfb2017-02-10 12:08:30 +010021 - bundle install
22
Martin Polreich211aa552017-07-17 10:41:23 +020023env:
Martin Polreichc1198be2018-04-11 15:34:36 +020024 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=client-single
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=server-single
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=client-single
27 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=server-single
28 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=client-single
29 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=server-single
30# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=client-single
31# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=server-single
32# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=client-single
33# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=server-single
Martin Polreich211aa552017-07-17 10:41:23 +020034
Petr Michalec39f3dfb2017-02-10 12:08:30 +010035before_script:
Martin Polreich17d0a0e2017-04-04 15:06:50 +020036 - set -o pipefail
37 - make test | tail
Petr Michalec39f3dfb2017-02-10 12:08:30 +010038
39script:
Martin Polreich7b94d592018-01-05 13:06:12 +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 Polreich211aa552017-07-17 10:41:23 +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