blob: 2c123b5a4ecafafd868f1452af9c011e5fb41cb6 [file] [log] [blame]
Martin Polreichac317ac2018-06-21 15:31:55 +02001language: python
2python:
3- "2.7.13"
Martin Polreich9690d172017-05-17 15:22:32 +02004sudo: 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'
18 gem 'inspec'
19 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
20 - bundle install
21
22env:
Martin Polreich7b9fe9f2018-02-21 14:39:39 +010023 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2016.3 SUITE=telegraf-agent
24 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2017.7 SUITE=telegraf-agent
25 # - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-bionic-salt-2017.7 SUITE=telegraf-agent
Martin Polreich9690d172017-05-17 15:22:32 +020026
27before_script:
28 - set -o pipefail
29 - make test | tail
30
31script:
Martin Polreich1d74c9a2018-01-05 13:34:49 +010032 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
33 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich9690d172017-05-17 15:22:32 +020034
35notifications:
36 webhooks:
37 urls:
38 - https://webhooks.gitter.im/e/6123573504759330786b
39 on_success: change # options: [always|never|change] default: always
40 on_failure: never # options: [always|never|change] default: always
41 on_start: never # options: [always|never|change] default: always
42 on_cancel: never # options: [always|never|change] default: always
43 on_error: never # options: [always|never|change] default: always
44 email: false