blob: 7f0292b92a0697b30165fde336a1c5d93b3dc731 [file] [log] [blame]
sudo: required
services:
- docker
install:
- pip install PyYAML
- pip install virtualenv
- |
test -e Gemfile || cat <<EOF > Gemfile
source 'https://rubygems.org'
gem 'rake'
gem 'test-kitchen'
gem 'kitchen-docker'
gem 'kitchen-inspec'
gem 'inspec'
gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
- bundle install
env:
- PLATFORM=trevorj/salty-whales:trusty SUITE=class-mapping
- PLATFORM=trevorj/salty-whales:trusty SUITE=generate-multi
- PLATFORM=trevorj/salty-whales:trusty SUITE=generate-single
- PLATFORM=trevorj/salty-whales:trusty SUITE=storage-local
- PLATFORM=trevorj/salty-whales:trusty SUITE=storage-nodes-uri
- PLATFORM=trevorj/salty-whales:xenial SUITE=class-mapping
- PLATFORM=trevorj/salty-whales:xenial SUITE=generate-multi
- PLATFORM=trevorj/salty-whales:xenial SUITE=generate-single
- PLATFORM=trevorj/salty-whales:xenial SUITE=storage-local
- PLATFORM=trevorj/salty-whales:xenial SUITE=storage-nodes-uri
- PLATFORM=trevorj/salty-whales:bionic SUITE=class_mapping
- PLATFORM=trevorj/salty-whales:bionic SUITE=generate_multi
- PLATFORM=trevorj/salty-whales:bionic SUITE=generate_single
- PLATFORM=trevorj/salty-whales:bionic SUITE=storage_local
- PLATFORM=trevorj/salty-whales:bionic SUITE=storage_nodes_uri
before_script:
- set -o pipefail
- make test | tail
script:
- test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
- test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/6123573504759330786b
on_success: change # options: [always|never|change] default: always
on_failure: never # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
on_cancel: never # options: [always|never|change] default: always
on_error: never # options: [always|never|change] default: always
email: false