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

119 lines
4.3KB

  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=v3000-py3-debian-10-3000-3-py3
  56. # - env: INSTANCE=v3000-py3-debian-9-3000-3-py3
  57. # - env: INSTANCE=v3000-py3-ubuntu-1804-3000-3-py3
  58. - env: INSTANCE=v3000-py3-centos-8-3000-3-py3
  59. # - env: INSTANCE=v3000-py3-centos-7-3000-3-py3
  60. - env: INSTANCE=v3000-py3-fedora-31-3000-3-py3
  61. - env: INSTANCE=v3000-py3-opensuse-leap-152-3000-3-py3
  62. - env: INSTANCE=v3000-py3-opensuse-leap-151-3000-3-py3
  63. - env: INSTANCE=v3000-py3-amazonlinux-2-3000-3-py3
  64. - env: INSTANCE=v3000-py2-ubuntu-1804-3000-3-py2
  65. # - env: INSTANCE=v3000-py2-ubuntu-1604-3000-3-py2
  66. # - env: INSTANCE=v201902-py3-debian-10-2019-2-py3
  67. - env: INSTANCE=v201902-py3-debian-9-2019-2-py3
  68. # - env: INSTANCE=v201902-py3-ubuntu-1804-2019-2-py3
  69. - env: INSTANCE=v201902-py3-ubuntu-1604-2019-2-py3
  70. # - env: INSTANCE=v201902-py3-centos-8-2019-2-py3
  71. - env: INSTANCE=v201902-py3-centos-7-2019-2-py3
  72. # - env: INSTANCE=v201902-py3-amazonlinux-2-2019-2-py3
  73. - env: INSTANCE=v201902-py2-centos-6-2019-2-py2
  74. # - env: INSTANCE=v201902-py2-amazonlinux-1-2019-2-py2
  75. ## Define the release stage that runs `semantic-release`
  76. - stage: 'release'
  77. language: 'node_js'
  78. node_js: 'lts/*'
  79. env: 'Release'
  80. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  81. before_install: 'skip'
  82. script:
  83. # Update `AUTHORS.md`
  84. - export MAINTAINER_TOKEN=${GH_TOKEN}
  85. - go get github.com/myii/maintainer
  86. - maintainer contributor
  87. # Install all dependencies required for `semantic-release`
  88. - npm i -D @semantic-release/changelog@3
  89. @semantic-release/exec@3
  90. @semantic-release/git@7
  91. deploy:
  92. provider: 'script'
  93. # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
  94. # * https://docs.travis-ci.com/user/build-config-validation
  95. # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
  96. edge: true
  97. # Run `semantic-release`
  98. script: 'npx semantic-release@15.14'
  99. # Notification options: `always`, `never` or `change`
  100. notifications:
  101. webhooks:
  102. if: 'repo = saltstack-formulas/salt-formula'
  103. urls:
  104. - https://saltstack-formulas.zulipchat.com/api/v1/external/travis?api_key=HsIq3o5QmLxdnVCKF9is0FUIpkpAY79P&stream=CI&topic=saltstack-formulas%2Fsalt-formula&ignore_pull_requests=true
  105. on_success: always # default: always
  106. on_failure: always # default: always
  107. on_start: always # default: never
  108. on_cancel: always # default: always
  109. on_error: always # default: always