Saltstack Official UFW Formula
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

121 lines
4.3KB

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