blob: 1741991cad26fac6de2b4ee27d75a5ef96dcc3b7 [file] [log] [blame]
Petr Michalec39f3dfb2017-02-10 12:08:30 +01001sudo: required
2services:
3 - docker
4
5install:
6 - pip install PyYAML
7 - pip install virtualenv
8 - |
9 test -e Gemfile || cat <<EOF > Gemfile
10 source 'https://rubygems.org'
11 gem 'rake'
12 gem 'test-kitchen'
13 gem 'kitchen-docker'
14 gem 'kitchen-inspec'
15 gem 'inspec'
Martin Polreich211aa552017-07-17 10:41:23 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalec39f3dfb2017-02-10 12:08:30 +010017 - bundle install
18
Martin Polreich211aa552017-07-17 10:41:23 +020019env:
Martin Polreich5029ced2018-02-16 15:00:24 +010020 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2016.3 SUITE=client-single
21 - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2017.7 SUITE=client-single
22# - PLATFORM=epcim/salt-formulas:saltstack-ubuntu-bionic-salt-2017.7 SUITE=client-single
Martin Polreich211aa552017-07-17 10:41:23 +020023
Petr Michalec39f3dfb2017-02-10 12:08:30 +010024before_script:
Martin Polreich17d0a0e2017-04-04 15:06:50 +020025 - set -o pipefail
26 - make test | tail
Petr Michalec39f3dfb2017-02-10 12:08:30 +010027
28script:
Martin Polreich7b94d592018-01-05 13:06:12 +010029 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
30 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich211aa552017-07-17 10:41:23 +020031
32notifications:
33 webhooks:
34 urls:
35 - https://webhooks.gitter.im/e/6123573504759330786b
36 on_success: change # options: [always|never|change] default: always
37 on_failure: never # options: [always|never|change] default: always
38 on_start: never # options: [always|never|change] default: always
39 on_cancel: never # options: [always|never|change] default: always
40 on_error: never # options: [always|never|change] default: always
41 email: false