Saltstack Official IPTables Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

43 行
1.2KB

  1. sudo: required
  2. services:
  3. - docker
  4. install:
  5. - pip install PyYAML
  6. - pip install virtualenv
  7. - |
  8. test -e Gemfile || cat <<EOF > Gemfile
  9. source 'https://rubygems.org'
  10. gem 'rake'
  11. gem 'test-kitchen'
  12. gem 'kitchen-docker'
  13. gem 'kitchen-inspec'
  14. gem 'inspec'
  15. gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
  16. - bundle install
  17. env:
  18. - PLATFORM=trevorj/salty-whales:trusty SUITE=iptables-server
  19. - PLATFORM=trevorj/salty-whales:xenial SUITE=iptables-server
  20. before_script:
  21. - set -o pipefail
  22. - make test | tail
  23. script:
  24. - test ! -e .kitchen.yml || bundle exec kitchen converge ${SUITE} || true
  25. - test ! -e .kitchen.yml || bundle exec kitchen verify ${SUITE} -t tests/integration
  26. notifications:
  27. on:
  28. branch: master
  29. webhooks:
  30. urls:
  31. - https://webhooks.gitter.im/e/6123573504759330786b
  32. on_success: change # options: [always|never|change] default: always
  33. on_failure: never # options: [always|never|change] default: always
  34. on_start: never # options: [always|never|change] default: always
  35. on_cancel: never # options: [always|never|change] default: always
  36. on_error: never # options: [always|never|change] default: always
  37. email: false