blob: 325550ac48dee69bab9621eab81a64d6d91e104c [file] [log] [blame]
Martin Polreich9824fa72017-03-30 10:12:02 +02001sudo: 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'
16 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
17 - bundle install
18
19env:
Martin Polreich6831a332018-01-19 14:24:52 +010020 # - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=server-cluster
21 # - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=server-single
Martin Polreich7b455dd2017-08-25 12:01:47 +020022 # Missing Trusty packages for aodh
Martin Polreich6831a332018-01-19 14:24:52 +010023 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=server-cluster
24 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=server-single
Martin Polreich9824fa72017-03-30 10:12:02 +020025
26before_script:
27 - set -o pipefail
28 - make test | tail
29
30script:
Martin Polreich0892bf72018-01-05 12:35:58 +010031 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
32 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreich9824fa72017-03-30 10:12:02 +020033
34notifications:
35 webhooks:
36 urls:
37 - https://webhooks.gitter.im/e/6123573504759330786b
38 on_success: change # options: [always|never|change] default: always
39 on_failure: never # options: [always|never|change] default: always
40 on_start: never # options: [always|never|change] default: always
41 on_cancel: never # options: [always|never|change] default: always
42 on_error: never # options: [always|never|change] default: always
43 email: false