blob: 51f343786d9dca018dcadbaa8ebe787767e2bb08 [file] [log] [blame]
Petr Michalec5f41e6e2017-04-10 10:18:12 +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:
Oleh Hryhorovb4e8e252018-01-19 15:59:21 +020020 - PLATFORM=trevorj/salty-whales:trusty-2017.7 OS_VERSION=mitaka SUITE=compute-cluster
21 - PLATFORM=trevorj/salty-whales:trusty-2017.7 OS_VERSION=mitaka SUITE=control-cluster
22 - PLATFORM=trevorj/salty-whales:xenial-2017.7 OS_VERSION=mitaka SUITE=compute-cluster
23 - PLATFORM=trevorj/salty-whales:xenial-2017.7 OS_VERSION=mitaka SUITE=control-cluster
24 - PLATFORM=trevorj/salty-whales:xenial-2017.7 OS_VERSION=newton SUITE=compute-cluster
25 - PLATFORM=trevorj/salty-whales:xenial-2017.7 OS_VERSION=newton SUITE=control-cluster
26 - PLATFORM=trevorj/salty-whales:xenial-2017.7 OS_VERSION=ocata SUITE=compute-cluster
27 - PLATFORM=trevorj/salty-whales:xenial-2017.7 OS_VERSION=ocata SUITE=control-cluster
Martin Polreich3d284c32018-01-05 13:27:57 +010028 - PLATFORM=trevorj/salty-whales:trusty OS_VERSION=mitaka SUITE=compute-cluster
29 - PLATFORM=trevorj/salty-whales:trusty OS_VERSION=mitaka SUITE=control-cluster
30 - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=mitaka SUITE=compute-cluster
31 - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=mitaka SUITE=control-cluster
32 - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=newton SUITE=compute-cluster
33 - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=newton SUITE=control-cluster
34 - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=ocata SUITE=compute-cluster
35 - PLATFORM=trevorj/salty-whales:xenial OS_VERSION=ocata SUITE=control-cluster
Petr Michalec5f41e6e2017-04-10 10:18:12 +020036
37before_script:
38 - set -o pipefail
39 - make test | tail
40
41script:
Martin Polreich3d284c32018-01-05 13:27:57 +010042 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
43 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Petr Michalec5f41e6e2017-04-10 10:18:12 +020044
45notifications:
46 webhooks:
47 urls:
48 - https://webhooks.gitter.im/e/6123573504759330786b
49 on_success: change # options: [always|never|change] default: always
50 on_failure: never # options: [always|never|change] default: always
51 on_start: never # options: [always|never|change] default: always
52 on_cancel: never # options: [always|never|change] default: always
53 on_error: never # options: [always|never|change] default: always
54 email: false