blob: 74246db027c8589140e881202984b9fe15dd2ecb [file] [log] [blame]
Martin8191d6f0a82017-03-17 17:38:11 +01001sudo: required
2services:
3 - docker
4
Martin819e07d0a92017-03-28 11:37:58 +02005install:
Martin8191d6f0a82017-03-17 17:38:11 +01006 - 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 Polreichb53b2382017-03-28 16:38:44 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin8191d6f0a82017-03-17 17:38:11 +010017 - bundle install
18
Martin819e07d0a92017-03-28 11:37:58 +020019env:
Martin Polreich0278d252017-08-25 11:40:10 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=iptables_server
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=iptables_server
Martin819e07d0a92017-03-28 11:37:58 +020022
Martin8191d6f0a82017-03-17 17:38:11 +010023before_script:
Martin819f7613e42017-03-28 09:40:12 +020024 - set -o pipefail
25 - make test | tail
Martin8191d6f0a82017-03-17 17:38:11 +010026
27script:
Martin Polreich0278d252017-08-25 11:40:10 +020028 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin819fe6e7872017-03-28 10:17:00 +020029
30notifications:
Martin819e07d0a92017-03-28 11:37:58 +020031 on:
32 branch: master
Martin819fe6e7872017-03-28 10:17:00 +020033 webhooks:
34 urls:
35 - https://webhooks.gitter.im/e/6123573504759330786b
36 on_success: change # options: [always|never|change] default: always
Martin8194cbbe3b2017-03-28 12:50:56 +020037 on_failure: never # options: [always|never|change] default: always
Martin819fe6e7872017-03-28 10:17:00 +020038 on_start: never # options: [always|never|change] default: always
39 on_cancel: never # options: [always|never|change] default: always
Martin8194cbbe3b2017-03-28 12:50:56 +020040 on_error: never # options: [always|never|change] default: always
41 email: false