blob: 4812d6617a3ce460d92af48d5f9eba7b5e78d38e [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 Polreich9c7f9752018-01-05 13:10:09 +010020 - 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 Polreich9c7f9752018-01-05 13:10:09 +010028 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
29 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin819fe6e7872017-03-28 10:17:00 +020030
31notifications:
Martin819e07d0a92017-03-28 11:37:58 +020032 on:
33 branch: master
Martin819fe6e7872017-03-28 10:17:00 +020034 webhooks:
35 urls:
36 - https://webhooks.gitter.im/e/6123573504759330786b
37 on_success: change # options: [always|never|change] default: always
Martin8194cbbe3b2017-03-28 12:50:56 +020038 on_failure: never # options: [always|never|change] default: always
Martin819fe6e7872017-03-28 10:17:00 +020039 on_start: never # options: [always|never|change] default: always
40 on_cancel: never # options: [always|never|change] default: always
Martin8194cbbe3b2017-03-28 12:50:56 +020041 on_error: never # options: [always|never|change] default: always
42 email: false