Saltstack Official FirewallD Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

108 行
3.8KB

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