New version of salt-formula from Saltstack
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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=minion_default
- - PLATFORM=trevorj/salty-whales:xenial SUITE=minion_default
- - PLATFORM=trevorj/salty-whales:trusty SUITE=master_default
- - PLATFORM=trevorj/salty-whales:xenial SUITE=master_default
- - PLATFORM=trevorj/salty-whales:trusty SUITE=minion_default
- - PLATFORM=trevorj/salty-whales:xenial SUITE=minion_default
- - PLATFORM=trevorj/salty-whales:trusty SUITE=control_default
- - PLATFORM=trevorj/salty-whales:xenial SUITE=control_default
- - PLATFORM=trevorj/salty-whales:trusty SUITE=minion_multi_master_failover
- - PLATFORM=trevorj/salty-whales:xenial SUITE=minion_multi_master_failover
-
- before_script:
- - set -o pipefail
- - make test | tail
-
- script:
- - KITCHEN_LOCAL_YAML=.kitchen.travis.yml bundle exec kitchen test -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
|