Saltstack Official FirewallD Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. ## Machine config
  5. os: 'linux'
  6. arch: 'amd64'
  7. dist: 'bionic'
  8. version: '~> 1.0'
  9. ## Language and cache config
  10. language: 'ruby'
  11. cache: 'bundler'
  12. ## Services config
  13. services:
  14. - docker
  15. ## Script to run for the test stage
  16. script:
  17. - bin/kitchen verify "${INSTANCE}"
  18. ## Stages and jobs matrix
  19. stages:
  20. - test
  21. - name: 'release'
  22. if: 'branch = master AND type != pull_request'
  23. jobs:
  24. include:
  25. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  26. # Run all of the linters in a single job
  27. - language: 'node_js'
  28. node_js: 'lts/*'
  29. env: 'Lint'
  30. name: 'Lint: salt-lint, yamllint, rubocop, shellcheck & commitlint'
  31. before_install: 'skip'
  32. script:
  33. # Install and run `salt-lint`
  34. - pip install --user salt-lint
  35. - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
  36. | xargs salt-lint
  37. # Install and run `yamllint`
  38. # Need at least `v1.17.0` for the `yaml-files` setting
  39. - pip install --user yamllint>=1.17.0
  40. - yamllint -s .
  41. # Install and run `rubocop`
  42. - gem install rubocop
  43. - rubocop -d
  44. # Run `shellcheck` (already pre-installed in Travis)
  45. - shellcheck --version
  46. - git ls-files -- '*.sh' '*.bash' '*.ksh'
  47. | xargs shellcheck
  48. # Install and run `commitlint`
  49. - npm i -D @commitlint/config-conventional
  50. @commitlint/travis-cli
  51. - commitlint-travis
  52. ## Define the rest of the matrix based on Kitchen testing
  53. # Make sure the instances listed below match up with
  54. # the `platforms` defined in `kitchen.yml`
  55. # - env: INSTANCE=default-debian-10-master-py3
  56. - env: INSTANCE=default-ubuntu-1804-master-py3
  57. # - env: INSTANCE=default-centos-8-master-py3
  58. # - env: INSTANCE=default-fedora-31-master-py3
  59. # - env: INSTANCE=default-opensuse-leap-151-master-py3
  60. # - env: INSTANCE=default-amazonlinux-2-master-py3
  61. # - env: INSTANCE=default-arch-base-latest-master-py2
  62. # - env: INSTANCE=default-debian-10-2019-2-py3
  63. - env: INSTANCE=default-debian-9-2019-2-py3
  64. # - env: INSTANCE=default-ubuntu-1804-2019-2-py3
  65. # - env: INSTANCE=default-centos-8-2019-2-py3
  66. - env: INSTANCE=default-fedora-31-2019-2-py3
  67. # - env: INSTANCE=default-opensuse-leap-151-2019-2-py3
  68. # - env: INSTANCE=default-centos-7-2019-2-py2
  69. - env: INSTANCE=default-amazonlinux-2-2019-2-py3
  70. # - env: INSTANCE=default-arch-base-latest-2019-2-py2
  71. # - env: INSTANCE=default-fedora-30-2018-3-py3
  72. # - env: INSTANCE=default-debian-9-2018-3-py2
  73. # - env: INSTANCE=default-ubuntu-1604-2018-3-py2
  74. # - env: INSTANCE=default-centos-7-2018-3-py2
  75. - env: INSTANCE=default-opensuse-leap-151-2018-3-py2
  76. # - env: INSTANCE=default-amazonlinux-1-2018-3-py2
  77. - env: INSTANCE=default-arch-base-latest-2018-3-py2
  78. # - env: INSTANCE=default-debian-8-2017-7-py2
  79. # - env: INSTANCE=default-ubuntu-1604-2017-7-py2
  80. # - env: INSTANCE=default-centos-6-2017-7-py2
  81. # - env: INSTANCE=default-fedora-30-2017-7-py2
  82. # - env: INSTANCE=default-opensuse-leap-151-2017-7-py2
  83. # - env: INSTANCE=default-amazonlinux-1-2017-7-py2
  84. # - env: INSTANCE=default-arch-base-latest-2017-7-py2
  85. ## Define the release stage that runs `semantic-release`
  86. - stage: 'release'
  87. language: 'node_js'
  88. node_js: 'lts/*'
  89. env: 'Release'
  90. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  91. before_install: 'skip'
  92. script:
  93. # Update `AUTHORS.md`
  94. - export MAINTAINER_TOKEN=${GH_TOKEN}
  95. - go get github.com/myii/maintainer
  96. - maintainer contributor
  97. # Install all dependencies required for `semantic-release`
  98. - npm i -D @semantic-release/changelog@3
  99. @semantic-release/exec@3
  100. @semantic-release/git@7
  101. deploy:
  102. provider: 'script'
  103. # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
  104. # * https://docs.travis-ci.com/user/build-config-validation
  105. # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
  106. edge: true
  107. # Run `semantic-release`
  108. script: 'npx semantic-release@15.14'