blob: 875835a89b5b8bf7508ea9b96134fb4f3cf8db8f [file] [log] [blame]
Martin Polreich1b292392018-09-13 16:04:51 +02001language: python
2python:
3- "2.7.13"
Petr Michalec35277532017-02-28 23:16:58 +01004sudo: required
5services:
6 - docker
7
Petr Michalec69693222017-04-13 09:59:27 +02008addons:
9 apt:
10 packages:
11 - apt-transport-https
12
Petr Michalec35277532017-02-28 23:16:58 +010013install:
14 - pip install PyYAML
15 - pip install virtualenv
16 - |
17 test -e Gemfile || cat <<EOF > Gemfile
18 source 'https://rubygems.org'
19 gem 'rake'
20 gem 'test-kitchen'
21 gem 'kitchen-docker'
22 gem 'kitchen-inspec'
Martin Polreichadb2f072018-10-24 12:02:43 +020023 gem 'inspec', '<3.0.0'
24 #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 Polreichf0d157b2017-03-28 16:43:40 +020025 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalec35277532017-02-28 23:16:58 +010026 - bundle install
27
28env:
Martin Polreich69ce4992018-04-18 15:32:09 +020029 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=network
30 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=system
31 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=network
32 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=system
33 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=network
34 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=system
35 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=network
36 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=system
37 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=network
38 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=system
Petr Michalec35277532017-02-28 23:16:58 +010039
40before_script:
Martin Polreichf0d157b2017-03-28 16:43:40 +020041 - set -o pipefail
Petr Michalec35277532017-02-28 23:16:58 +010042 - make test | tail
43
44script:
Martin Polreichfcee6e42018-01-05 13:22:16 +010045 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
46 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichf0d157b2017-03-28 16:43:40 +020047
48notifications:
49 webhooks:
50 urls:
51 - https://webhooks.gitter.im/e/6123573504759330786b
52 on_success: change # options: [always|never|change] default: always
53 on_failure: never # options: [always|never|change] default: always
54 on_start: never # options: [always|never|change] default: always
55 on_cancel: never # options: [always|never|change] default: always
56 on_error: never # options: [always|never|change] default: always
57 email: false