blob: e7f65835a51a136010bb43a2f4fbf62f35372b08 [file] [log] [blame]
Martin Polreich21f23142017-05-16 11:03:46 +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 Polreichdfe74ac2017-07-17 16:55:31 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=server_rdiff
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=server_rdiff
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=client_rsync
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=client_rsync
24 - PLATFORM=trevorj/salty-whales:trusty SUITE=client_s3
25 - PLATFORM=trevorj/salty-whales:xenial SUITE=client_s3
26 - PLATFORM=trevorj/salty-whales:trusty SUITE=client_webdav
27 - PLATFORM=trevorj/salty-whales:xenial SUITE=client_webdav
Martin Polreich21f23142017-05-16 11:03:46 +020028
29before_script:
30 - set -o pipefail
31 - make test | tail
32
33script:
Martin Polreichdfe74ac2017-07-17 16:55:31 +020034 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich21f23142017-05-16 11:03:46 +020035
36notifications:
37 webhooks:
38 urls:
39 - https://webhooks.gitter.im/e/6123573504759330786b
40 on_success: change # options: [always|never|change] default: always
41 on_failure: never # options: [always|never|change] default: always
42 on_start: never # options: [always|never|change] default: always
43 on_cancel: never # options: [always|never|change] default: always
44 on_error: never # options: [always|never|change] default: always
45 email: false