blob: a323188df0600eed02cefb8624f98550b5fe4433 [file] [log] [blame]
Martin8196b937d72017-02-10 15:45:43 +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 Polreich93111a82017-03-28 16:53:00 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin8196b937d72017-02-10 15:45:43 +010017 - bundle install
18
Martin Polreich93111a82017-03-28 16:53:00 +020019env:
Martin Polreichedfeca12018-01-05 13:11:12 +010020 - PLATFORM=trevorj/salty-whales:trusty SUITE=keepalived-cluster
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=keepalived-cluster
Martin Polreich93111a82017-03-28 16:53:00 +020022
Martin8196b937d72017-02-10 15:45:43 +010023before_script:
Martin Polreich93111a82017-03-28 16:53:00 +020024 - set -o pipefail
Martin819648c7a42017-02-16 09:52:53 +010025 - make test | tail
Martin8196b937d72017-02-10 15:45:43 +010026
27script:
Martin Polreichedfeca12018-01-05 13:11:12 +010028 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
29 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich93111a82017-03-28 16:53:00 +020030
31notifications:
32 webhooks:
33 urls:
34 - https://webhooks.gitter.im/e/6123573504759330786b
35 on_success: change # options: [always|never|change] default: always
36 on_failure: never # options: [always|never|change] default: always
37 on_start: never # options: [always|never|change] default: always
38 on_cancel: never # options: [always|never|change] default: always
39 on_error: never # options: [always|never|change] default: always
40 email: false