blob: a17ce6585bfe47541efa308feeae1d57483692cf [file] [log] [blame]
Petr Ruzickaba0a49d2018-01-31 22:16:20 +01001sudo: required
2services:
3 - docker
4
5addons:
6 apt:
7 packages:
8 - apt-transport-https
9
10install:
11 - pip install PyYAML
12 - pip install virtualenv
13 - |
14 test -e Gemfile || cat <<EOF > Gemfile
15 source 'https://rubygems.org'
16 gem 'rake'
17 gem 'test-kitchen'
18 gem 'kitchen-docker'
19 gem 'kitchen-inspec'
20 gem 'inspec'
21 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
22 - bundle install
23
24env:
25 - PLATFORM=trevorj/salty-whales:xenial-2017.7 SUITE=server-single
26 - PLATFORM=trevorj/salty-whales:trusty-2017.7 SUITE=server-single
27 - PLATFORM=trevorj/salty-whales:xenial SUITE=server-single
28 - PLATFORM=trevorj/salty-whales:trusty SUITE=server-single
29
30before_script:
31 - set -o pipefail
32 - make test | tail
33
34script:
35 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
36 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
37
38notifications:
39 webhooks:
40 urls:
41 - https://webhooks.gitter.im/e/6123573504759330786b
42 on_success: change # options: [always|never|change] default: always
43 on_failure: never # options: [always|never|change] default: always
44 on_start: never # options: [always|never|change] default: always
45 on_cancel: never # options: [always|never|change] default: always
46 on_error: never # options: [always|never|change] default: always
47 email: false