blob: dce83afd45e2ab4677c8e98a230d2989487b54ae [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
Gleb Galkin93b9ae92018-10-18 13:57:30 +030035 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=duo
Martin Polreich69ce4992018-04-18 15:32:09 +020036 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=network
37 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=system
38 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=network
39 # - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=system
Petr Michalec35277532017-02-28 23:16:58 +010040
41before_script:
Martin Polreichf0d157b2017-03-28 16:43:40 +020042 - set -o pipefail
Petr Michalec35277532017-02-28 23:16:58 +010043 - make test | tail
44
45script:
Martin Polreichfcee6e42018-01-05 13:22:16 +010046 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
47 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichf0d157b2017-03-28 16:43:40 +020048
49notifications:
50 webhooks:
51 urls:
52 - https://webhooks.gitter.im/e/6123573504759330786b
53 on_success: change # options: [always|never|change] default: always
54 on_failure: never # options: [always|never|change] default: always
55 on_start: never # options: [always|never|change] default: always
56 on_cancel: never # options: [always|never|change] default: always
57 on_error: never # options: [always|never|change] default: always
58 email: false