blob: 1339fd9fa56d587ab3324e8b860d7e10ce0c0dad [file] [log] [blame]
Martin Polreich5d448b92017-03-30 11:29:47 +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 Polreichccc7cf82017-07-17 16:47:33 +020020 - PLATFORM=trevorj/salty-whales:trusty SUITE=horizon_no_ssl
21 - PLATFORM=trevorj/salty-whales:xenial SUITE=horizon_no_ssl
22 - PLATFORM=trevorj/salty-whales:trusty SUITE=horizon_with_ssl
23 - PLATFORM=trevorj/salty-whales:xenial SUITE=horizon_with_ssl
24 - PLATFORM=trevorj/salty-whales:trusty SUITE=proxy
25 - PLATFORM=trevorj/salty-whales:xenial SUITE=proxy
26 - PLATFORM=trevorj/salty-whales:trusty SUITE=redirect
27 - PLATFORM=trevorj/salty-whales:xenial SUITE=redirect
28 - PLATFORM=trevorj/salty-whales:trusty SUITE=static
29 - PLATFORM=trevorj/salty-whales:xenial SUITE=static
30 - PLATFORM=trevorj/salty-whales:trusty SUITE=stats
31 - PLATFORM=trevorj/salty-whales:xenial SUITE=stats
Martin Polreich5d448b92017-03-30 11:29:47 +020032
33before_script:
34 - set -o pipefail
35 - make test | tail
36
37script:
Martin Polreichccc7cf82017-07-17 16:47:33 +020038 - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -t tests/integration
Martin Polreich5d448b92017-03-30 11:29:47 +020039
40notifications:
41 webhooks:
42 urls:
43 - https://webhooks.gitter.im/e/6123573504759330786b
44 on_success: change # options: [always|never|change] default: always
45 on_failure: never # options: [always|never|change] default: always
46 on_start: never # options: [always|never|change] default: always
47 on_cancel: never # options: [always|never|change] default: always
48 on_error: never # options: [always|never|change] default: always
49 email: false