Saltstack Official Syslog-NG Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. ###############################################################################
  5. # Define all YAML node anchors
  6. ###############################################################################
  7. .node_anchors:
  8. # `only` (also used for `except` where applicable)
  9. only_branch_master_parent_repo: &only_branch_master_parent_repo
  10. - 'master@saltstack-formulas/syslog-ng-formula'
  11. # `stage`
  12. stage_lint: &stage_lint 'lint'
  13. stage_release: &stage_release 'release'
  14. stage_test: &stage_test 'test'
  15. # `image`
  16. image_commitlint: &image_commitlint 'myii/ssf-commitlint:11'
  17. image_dindruby: &image_dindruby 'myii/ssf-dind-ruby:2.7.1-r3'
  18. image_precommit: &image_precommit
  19. name: 'myii/ssf-pre-commit:2.9.2'
  20. entrypoint: ['/bin/bash', '-c']
  21. image_rubocop: &image_rubocop 'pipelinecomponents/rubocop:latest'
  22. image_semantic-release: &image_semanticrelease 'myii/ssf-semantic-release:15.14'
  23. # `services`
  24. services_docker_dind: &services_docker_dind
  25. - 'docker:dind'
  26. # `variables`
  27. # https://forum.gitlab.com/t/gitlab-com-ci-caching-rubygems/5627/3
  28. # https://bundler.io/v1.16/bundle_config.html
  29. variables_bundler: &variables_bundler
  30. BUNDLE_CACHE_PATH: '${CI_PROJECT_DIR}/.cache/bundler'
  31. BUNDLE_WITHOUT: 'production'
  32. # `cache`
  33. cache_bundler: &cache_bundler
  34. key: '${CI_JOB_STAGE}'
  35. paths:
  36. - '${BUNDLE_CACHE_PATH}'
  37. ###############################################################################
  38. # Define stages and global variables
  39. ###############################################################################
  40. stages:
  41. - *stage_lint
  42. - *stage_test
  43. - *stage_release
  44. variables:
  45. DOCKER_DRIVER: 'overlay2'
  46. ###############################################################################
  47. # `lint` stage: `commitlint`, `pre-commit` & `rubocop` (latest, failure allowed)
  48. ###############################################################################
  49. commitlint:
  50. stage: *stage_lint
  51. image: *image_commitlint
  52. script:
  53. # Add `upstream` remote to get access to `upstream/master`
  54. - 'git remote add upstream
  55. https://gitlab.com/saltstack-formulas/syslog-ng-formula.git'
  56. - 'git fetch --all'
  57. # Set default commit hashes for `--from` and `--to`
  58. - 'export COMMITLINT_FROM="$(git merge-base upstream/master HEAD)"'
  59. - 'export COMMITLINT_TO="${CI_COMMIT_SHA}"'
  60. # `coqbot` adds a merge commit to test PRs on top of the latest commit in
  61. # the repo; amend this merge commit message to avoid failure
  62. - |
  63. if [ "${GITLAB_USER_LOGIN}" = "coqbot" ] \
  64. && [ "${CI_COMMIT_BRANCH}" != "master" ]; then
  65. git commit --amend -m \
  66. 'chore: reword coqbot merge commit message for commitlint'
  67. export COMMITLINT_TO=HEAD
  68. fi
  69. # Run `commitlint`
  70. - 'commitlint --from "${COMMITLINT_FROM}"
  71. --to "${COMMITLINT_TO}"
  72. --verbose'
  73. pre-commit:
  74. stage: *stage_lint
  75. image: *image_precommit
  76. # https://pre-commit.com/#gitlab-ci-example
  77. variables:
  78. PRE_COMMIT_HOME: '${CI_PROJECT_DIR}/.cache/pre-commit'
  79. cache:
  80. key: '${CI_JOB_NAME}'
  81. paths:
  82. - '${PRE_COMMIT_HOME}'
  83. script:
  84. - 'pre-commit run --all-files --color always --verbose'
  85. # Use a separate job for `rubocop` other than the one potentially run by `pre-commit`
  86. # - The `pre-commit` check will only be available for formulas that pass the default
  87. # `rubocop` check -- and must continue to do so
  88. # - This job is allowed to fail, so can be used for all formulas
  89. # - Furthermore, this job uses all of the latest `rubocop` features & cops,
  90. # which will help when upgrading the `rubocop` linter used in `pre-commit`
  91. rubocop:
  92. allow_failure: true
  93. stage: *stage_lint
  94. image: *image_rubocop
  95. script:
  96. - 'rubocop -d -P -S --enable-pending-cops'
  97. ###############################################################################
  98. # Define `test` template
  99. ###############################################################################
  100. .test_instance: &test_instance
  101. stage: *stage_test
  102. image: *image_dindruby
  103. services: *services_docker_dind
  104. variables: *variables_bundler
  105. cache: *cache_bundler
  106. before_script:
  107. # TODO: This should work from the env vars above automatically
  108. - 'bundle config set path "${BUNDLE_CACHE_PATH}"'
  109. - 'bundle config set without "${BUNDLE_WITHOUT}"'
  110. - 'bundle install'
  111. script:
  112. # Alternative value to consider: `${CI_JOB_NAME}`
  113. - 'bin/kitchen verify "${DOCKER_ENV_CI_JOB_NAME}"'
  114. ###############################################################################
  115. # Define `test` template (`allow_failure: true`)
  116. ###############################################################################
  117. .test_instance_failure_permitted:
  118. <<: *test_instance
  119. allow_failure: true
  120. ###############################################################################
  121. # `test` stage: each instance below uses the `test` template above
  122. ###############################################################################
  123. ## Define the rest of the matrix based on Kitchen testing
  124. # Make sure the instances listed below match up with
  125. # the `platforms` defined in `kitchen.yml`
  126. # yamllint disable rule:line-length
  127. # default-debian-11-tiamat-py3: {extends: '.test_instance'}
  128. # default-debian-10-tiamat-py3: {extends: '.test_instance'}
  129. # default-debian-9-tiamat-py3: {extends: '.test_instance'}
  130. # default-ubuntu-2204-tiamat-py3: {extends: '.test_instance_failure_permitted'}
  131. # default-ubuntu-2004-tiamat-py3: {extends: '.test_instance'}
  132. # default-ubuntu-1804-tiamat-py3: {extends: '.test_instance'}
  133. # default-centos-stream8-tiamat-py3: {extends: '.test_instance_failure_permitted'}
  134. # default-centos-7-tiamat-py3: {extends: '.test_instance'}
  135. # default-amazonlinux-2-tiamat-py3: {extends: '.test_instance'}
  136. # default-oraclelinux-8-tiamat-py3: {extends: '.test_instance'}
  137. # default-oraclelinux-7-tiamat-py3: {extends: '.test_instance'}
  138. # default-almalinux-8-tiamat-py3: {extends: '.test_instance'}
  139. # default-rockylinux-8-tiamat-py3: {extends: '.test_instance'}
  140. default-debian-11-master-py3: {extends: '.test_instance'}
  141. default-debian-10-master-py3: {extends: '.test_instance'}
  142. default-debian-9-master-py3: {extends: '.test_instance'}
  143. default-ubuntu-2204-master-py3: {extends: '.test_instance_failure_permitted'}
  144. default-ubuntu-2004-master-py3: {extends: '.test_instance'}
  145. default-ubuntu-1804-master-py3: {extends: '.test_instance'}
  146. default-centos-stream8-master-py3: {extends: '.test_instance_failure_permitted'}
  147. default-centos-7-master-py3: {extends: '.test_instance'}
  148. default-fedora-36-master-py3: {extends: '.test_instance_failure_permitted'}
  149. default-fedora-35-master-py3: {extends: '.test_instance'}
  150. default-opensuse-leap-153-master-py3: {extends: '.test_instance'}
  151. default-opensuse-tmbl-latest-master-py3: {extends: '.test_instance_failure_permitted'}
  152. default-amazonlinux-2-master-py3: {extends: '.test_instance'}
  153. default-oraclelinux-8-master-py3: {extends: '.test_instance'}
  154. default-oraclelinux-7-master-py3: {extends: '.test_instance'}
  155. default-arch-base-latest-master-py3: {extends: '.test_instance'}
  156. default-gentoo-stage3-latest-master-py3: {extends: '.test_instance'}
  157. default-gentoo-stage3-systemd-master-py3: {extends: '.test_instance'}
  158. default-almalinux-8-master-py3: {extends: '.test_instance'}
  159. default-rockylinux-8-master-py3: {extends: '.test_instance'}
  160. # default-debian-11-3004-1-py3: {extends: '.test_instance'}
  161. # default-debian-10-3004-1-py3: {extends: '.test_instance'}
  162. # default-debian-9-3004-1-py3: {extends: '.test_instance'}
  163. # default-ubuntu-2204-3004-1-py3: {extends: '.test_instance_failure_permitted'}
  164. # default-ubuntu-2004-3004-1-py3: {extends: '.test_instance'}
  165. # default-ubuntu-1804-3004-1-py3: {extends: '.test_instance'}
  166. # default-centos-stream8-3004-1-py3: {extends: '.test_instance_failure_permitted'}
  167. # default-centos-7-3004-1-py3: {extends: '.test_instance'}
  168. # default-fedora-36-3004-1-py3: {extends: '.test_instance_failure_permitted'}
  169. # default-fedora-35-3004-1-py3: {extends: '.test_instance'}
  170. # default-amazonlinux-2-3004-1-py3: {extends: '.test_instance'}
  171. # default-oraclelinux-8-3004-1-py3: {extends: '.test_instance'}
  172. # default-oraclelinux-7-3004-1-py3: {extends: '.test_instance'}
  173. # default-arch-base-latest-3004-1-py3: {extends: '.test_instance'}
  174. # default-gentoo-stage3-latest-3004-1-py3: {extends: '.test_instance'}
  175. # default-gentoo-stage3-systemd-3004-1-py3: {extends: '.test_instance'}
  176. # default-almalinux-8-3004-1-py3: {extends: '.test_instance'}
  177. # default-rockylinux-8-3004-1-py3: {extends: '.test_instance'}
  178. # default-opensuse-leap-153-3004-0-py3: {extends: '.test_instance'}
  179. # default-opensuse-tmbl-latest-3004-0-py3: {extends: '.test_instance_failure_permitted'}
  180. # default-debian-10-3003-4-py3: {extends: '.test_instance'}
  181. # default-debian-9-3003-4-py3: {extends: '.test_instance'}
  182. # default-ubuntu-2004-3003-4-py3: {extends: '.test_instance'}
  183. # default-ubuntu-1804-3003-4-py3: {extends: '.test_instance'}
  184. # default-centos-stream8-3003-4-py3: {extends: '.test_instance_failure_permitted'}
  185. # default-centos-7-3003-4-py3: {extends: '.test_instance'}
  186. # default-amazonlinux-2-3003-4-py3: {extends: '.test_instance'}
  187. # default-oraclelinux-8-3003-4-py3: {extends: '.test_instance'}
  188. # default-oraclelinux-7-3003-4-py3: {extends: '.test_instance'}
  189. # default-almalinux-8-3003-4-py3: {extends: '.test_instance'}
  190. # yamllint enable rule:line-length
  191. ###############################################################################
  192. # `release` stage: `semantic-release`
  193. ###############################################################################
  194. semantic-release:
  195. only: *only_branch_master_parent_repo
  196. stage: *stage_release
  197. image: *image_semanticrelease
  198. variables:
  199. MAINTAINER_TOKEN: '${GH_TOKEN}'
  200. script:
  201. # Update `AUTHORS.md`
  202. - '${HOME}/go/bin/maintainer contributor'
  203. # Run `semantic-release`
  204. - 'semantic-release'