blob: fda3a1634fec03dcfdc953d814f65af07bf54745 [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 Polreicha5672ad2017-08-24 18:16:54 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=client_single
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=client_single
Martin Polreich211aa552017-07-17 10:41:23 +020022
Petr Michalec39f3dfb2017-02-10 12:08:30 +010023before_script:
Martin Polreich17d0a0e2017-04-04 15:06:50 +020024 - set -o pipefail
25 - make test | tail
Petr Michalec39f3dfb2017-02-10 12:08:30 +010026
27script:
Martin Polreicha5672ad2017-08-24 18:16:54 +020028 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich211aa552017-07-17 10:41:23 +020029
30notifications:
31 webhooks:
32 urls:
33 - https://webhooks.gitter.im/e/6123573504759330786b
34 on_success: change # options: [always|never|change] default: always
35 on_failure: never # options: [always|never|change] default: always
36 on_start: never # options: [always|never|change] default: always
37 on_cancel: never # options: [always|never|change] default: always
38 on_error: never # options: [always|never|change] default: always
39 email: false