Saltstack Official Syslog-NG 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.

153 lines
5.5KB

  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. allow_failures:
  25. - env: Lint_rubocop
  26. fast_finish: true
  27. include:
  28. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  29. # Run all of the linters in a single job (except `rubocop`)
  30. - language: 'node_js'
  31. node_js: 'lts/*'
  32. env: 'Lint'
  33. name: 'Lint: salt-lint, yamllint, shellcheck & commitlint'
  34. before_install: 'skip'
  35. script:
  36. # Install and run `salt-lint`
  37. - pip install --user salt-lint
  38. - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
  39. | xargs salt-lint
  40. # Install and run `yamllint`
  41. # Need at least `v1.17.0` for the `yaml-files` setting
  42. - pip install --user yamllint>=1.17.0
  43. - yamllint -s .
  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. # Run the `rubocop` linter in a separate job that is allowed to fail
  53. # Once these lint errors are fixed, this can be merged into a single job
  54. - language: node_js
  55. node_js: lts/*
  56. env: Lint_rubocop
  57. name: 'Lint: rubocop'
  58. before_install: skip
  59. script:
  60. # Install and run `rubocop`
  61. - gem install rubocop
  62. - rubocop -d
  63. # Run `pre-commit` linters in a single job
  64. - language: 'python'
  65. env: 'Lint_pre-commit'
  66. name: 'Lint: pre-commit'
  67. before_install: 'skip'
  68. cache:
  69. directories:
  70. - $HOME/.cache/pre-commit
  71. script:
  72. # Install and run `pre-commit`
  73. - pip install pre-commit==2.7.1
  74. - pre-commit run --all-files --color always --verbose
  75. - pre-commit run --color always --hook-stage manual --verbose commitlint-travis
  76. ## Define the rest of the matrix based on Kitchen testing
  77. # Make sure the instances listed below match up with
  78. # the `platforms` defined in `kitchen.yml`
  79. - env: INSTANCE=default-debian-10-master-py3
  80. # - env: INSTANCE=default-ubuntu-1804-master-py3
  81. # - env: INSTANCE=default-centos-8-master-py3
  82. # - env: INSTANCE=default-fedora-31-master-py3
  83. # - env: INSTANCE=default-opensuse-leap-151-master-py3
  84. # - env: INSTANCE=default-amazonlinux-2-master-py3
  85. # - env: INSTANCE=default-debian-10-2019-2-py3
  86. # - env: INSTANCE=default-debian-9-2019-2-py3
  87. - env: INSTANCE=default-ubuntu-1804-2019-2-py3
  88. # - env: INSTANCE=default-centos-8-2019-2-py3
  89. # - env: INSTANCE=default-fedora-31-2019-2-py3
  90. - env: INSTANCE=default-opensuse-leap-151-2019-2-py3
  91. # - env: INSTANCE=default-centos-7-2019-2-py2
  92. - env: INSTANCE=default-amazonlinux-2-2019-2-py3
  93. # - env: INSTANCE=default-arch-base-latest-2019-2-py2
  94. - env: INSTANCE=default-fedora-30-2018-3-py3
  95. # - env: INSTANCE=default-debian-9-2018-3-py2
  96. # - env: INSTANCE=default-ubuntu-1604-2018-3-py2
  97. # - env: INSTANCE=default-centos-7-2018-3-py2
  98. # - env: INSTANCE=default-opensuse-leap-151-2018-3-py2
  99. # - env: INSTANCE=default-amazonlinux-1-2018-3-py2
  100. - env: INSTANCE=default-arch-base-latest-2018-3-py2
  101. # - env: INSTANCE=default-debian-8-2017-7-py2
  102. # - env: INSTANCE=default-ubuntu-1604-2017-7-py2
  103. - env: INSTANCE=default-centos-6-2017-7-py2
  104. # - env: INSTANCE=default-fedora-30-2017-7-py2
  105. # - env: INSTANCE=default-opensuse-leap-151-2017-7-py2
  106. # - env: INSTANCE=default-amazonlinux-1-2017-7-py2
  107. # - env: INSTANCE=default-arch-base-latest-2017-7-py2
  108. ## Define the release stage that runs `semantic-release`
  109. - stage: 'release'
  110. language: 'node_js'
  111. node_js: 'lts/*'
  112. env: 'Release'
  113. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  114. before_install: 'skip'
  115. script:
  116. # Update `AUTHORS.md`
  117. - export MAINTAINER_TOKEN=${GH_TOKEN}
  118. - go get github.com/myii/maintainer
  119. - maintainer contributor
  120. # Install all dependencies required for `semantic-release`
  121. - npm i -D @semantic-release/changelog@3
  122. @semantic-release/exec@3
  123. @semantic-release/git@7
  124. deploy:
  125. provider: 'script'
  126. # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
  127. # * https://docs.travis-ci.com/user/build-config-validation
  128. # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
  129. edge: true
  130. # Run `semantic-release`
  131. script: 'npx semantic-release@15.14'
  132. # Notification options: `always`, `never` or `change`
  133. notifications:
  134. webhooks:
  135. if: 'repo = saltstack-formulas/syslog-ng-formula'
  136. urls:
  137. - https://saltstack-formulas.zulipchat.com/api/v1/external/travis?api_key=HsIq3o5QmLxdnVCKF9is0FUIpkpAY79P&stream=CI&topic=saltstack-formulas%2Fsyslog-ng-formula&ignore_pull_requests=true
  138. on_success: always # default: always
  139. on_failure: always # default: always
  140. on_start: always # default: never
  141. on_cancel: always # default: always
  142. on_error: always # default: always