blob: 79c253216333e5f16010c810600557b2e9077b86 [file] [log] [blame]
Martin8199c78d942017-02-21 16:03:34 +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 Polreich045e0602017-03-28 16:58:15 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Martin8199c78d942017-02-21 16:03:34 +010017 - bundle install
18
19env:
Martin Polreich3de238f2017-08-24 17:00:51 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=class_mapping
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=class_mapping
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=generate_multi
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=generate_multi
24 - PLATFORM=trevorj/salty-whales:trusty SUITE=generate_single
25 - PLATFORM=trevorj/salty-whales:xenial SUITE=generate_single
26 - PLATFORM=trevorj/salty-whales:trusty SUITE=storage_local
27 - PLATFORM=trevorj/salty-whales:xenial SUITE=storage_local
28 - PLATFORM=trevorj/salty-whales:trusty SUITE=storage_nodes_uri
29 - PLATFORM=trevorj/salty-whales:xenial SUITE=storage_nodes_uri
Martin8199c78d942017-02-21 16:03:34 +010030
31before_script:
Martin Polreich045e0602017-03-28 16:58:15 +020032 - set -o pipefail
Martin8199c78d942017-02-21 16:03:34 +010033 - make test | tail
34
35script:
Martin Polreich3de238f2017-08-24 17:00:51 +020036 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich045e0602017-03-28 16:58:15 +020037
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