blob: 714c249eb56e80b9744c7022362a4aaaafb87b66 [file] [log] [blame]
Petr Michalec35277532017-02-28 23:16:58 +01001sudo: required
2services:
3 - docker
4
Petr Michalec69693222017-04-13 09:59:27 +02005addons:
6 apt:
7 packages:
8 - apt-transport-https
9
Petr Michalec35277532017-02-28 23:16:58 +010010install:
11 - pip install PyYAML
12 - pip install virtualenv
13 - |
14 test -e Gemfile || cat <<EOF > Gemfile
15 source 'https://rubygems.org'
16 gem 'rake'
17 gem 'test-kitchen'
18 gem 'kitchen-docker'
19 gem 'kitchen-inspec'
20 gem 'inspec'
Martin Polreichf0d157b2017-03-28 16:43:40 +020021 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalec35277532017-02-28 23:16:58 +010022 - bundle install
23
24env:
Martin Polreich00b8f532017-08-24 16:11:46 +020025 - PLATFORM=trevorj/salty-whales:trusty SUITE=network
26 - PLATFORM=trevorj/salty-whales:xenial SUITE=network
27 # - PLATFORM=trevorj/salty-whales:trusty SUITE=storage
28 # - PLATFORM=trevorj/salty-whales:xenial SUITE=storage
29 - PLATFORM=trevorj/salty-whales:trusty SUITE=system
30 - PLATFORM=trevorj/salty-whales:xenial SUITE=system
Petr Michalec35277532017-02-28 23:16:58 +010031
32before_script:
Martin Polreichf0d157b2017-03-28 16:43:40 +020033 - set -o pipefail
Petr Michalec35277532017-02-28 23:16:58 +010034 - make test | tail
35
36script:
Martin Polreichfcee6e42018-01-05 13:22:16 +010037 - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
38 - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
Martin Polreichf0d157b2017-03-28 16:43:40 +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