blob: 69280b24f8ee2f9cd81b436b3f374d1295670c83 [file] [log] [blame]
Martin Polreichbc9dcc52018-06-21 15:29:32 +02001language: python
2python:
3- "2.7.13"
Martin8196b937d72017-02-10 15:45:43 +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 Polreich176b6ff2018-10-24 12:02:27 +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 Polreich93111a82017-03-28 16:53:00 +020020 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin8196b937d72017-02-10 15:45:43 +010021 - bundle install
22
Martin Polreich93111a82017-03-28 16:53:00 +020023env:
Martin Polreicha22250b2018-04-18 11:23:56 +020024 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2016.3 SUITE=keepalived-cluster
25 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2017.7 SUITE=keepalived-cluster
26 - PLATFORM=epcim/salt:saltstack-ubuntu-xenial-salt-2018.3 SUITE=keepalived-cluster
27# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2017.7 SUITE=keepalived-cluster
28# - PLATFORM=epcim/salt:saltstack-ubuntu-bionic-salt-2018.3 SUITE=keepalived-cluster
Martin Polreich93111a82017-03-28 16:53:00 +020029
Martin8196b937d72017-02-10 15:45:43 +010030before_script:
Martin Polreich93111a82017-03-28 16:53:00 +020031 - set -o pipefail
Martin819648c7a42017-02-16 09:52:53 +010032 - make test | tail
Martin8196b937d72017-02-10 15:45:43 +010033
34script:
Martin Polreichedfeca12018-01-05 13:11:12 +010035 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
36 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich93111a82017-03-28 16:53:00 +020037
38notifications:
39 webhooks:
40 urls:
41 - https://webhooks.gitter.im/e/6123573504759330786b
42 on_success: change # options: [always|never|change] default: always
43 on_failure: never # options: [always|never|change] default: always
44 on_start: never # options: [always|never|change] default: always
45 on_cancel: never # options: [always|never|change] default: always
46 on_error: never # options: [always|never|change] default: always
47 email: false