blob: 8721b7f2b601acf1d1acea038170cb3fd97c93fe [file] [log] [blame]
Petr Michalec1c5f7c42017-03-10 10:26:09 +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 Polreich603c8022017-04-06 10:04:51 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalec1c5f7c42017-03-10 10:26:09 +010017 - bundle install
18
19env:
Martin Polreich85bfcc92017-07-17 15:39:09 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=cluster
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=cluster
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=single_ceph
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=single_ceph
Oleg Iurchenko68ae3552017-10-13 18:40:42 +030024 - PLATFORM=trevorj/salty-whales:trusty SUITE=single_barbican
25 - PLATFORM=trevorj/salty-whales:xenial SUITE=single_barbican
Martin Polreich85bfcc92017-07-17 15:39:09 +020026 - PLATFORM=trevorj/salty-whales:trusty SUITE=single
27 - PLATFORM=trevorj/salty-whales:xenial SUITE=single
Petr Michalec1c5f7c42017-03-10 10:26:09 +010028
29before_script:
Martin Polreich603c8022017-04-06 10:04:51 +020030 - set -o pipefail
31 - make test | tail
Petr Michalec1c5f7c42017-03-10 10:26:09 +010032
33script:
Martin Polreich85bfcc92017-07-17 15:39:09 +020034 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich603c8022017-04-06 10:04:51 +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