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

255 行
12KB

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