Saltstack Official Apache 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.

264 line
13KB

  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. # 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-2004-tiamat-py3: {extends: '.test_instance'}
  131. # default-ubuntu-1804-tiamat-py3: {extends: '.test_instance'}
  132. # default-centos-stream8-tiamat-py3: {extends: '.test_instance_failure_permitted'}
  133. # default-centos-7-tiamat-py3: {extends: '.test_instance'}
  134. # default-amazonlinux-2-tiamat-py3: {extends: '.test_instance'}
  135. # default-oraclelinux-8-tiamat-py3: {extends: '.test_instance'}
  136. # default-oraclelinux-7-tiamat-py3: {extends: '.test_instance'}
  137. # default-almalinux-8-tiamat-py3: {extends: '.test_instance'}
  138. # default-rockylinux-8-tiamat-py3: {extends: '.test_instance'}
  139. # default-debian-11-master-py3: {extends: '.test_instance'}
  140. # modules-debian-11-master-py3: {extends: '.test_instance'}
  141. debian-11-master-py3: {extends: '.test_instance'}
  142. # default-debian-10-master-py3: {extends: '.test_instance'}
  143. # modules-debian-10-master-py3: {extends: '.test_instance'}
  144. debian-10-master-py3: {extends: '.test_instance'}
  145. # default-debian-9-master-py3: {extends: '.test_instance'}
  146. # modules-debian-9-master-py3: {extends: '.test_instance'}
  147. # debian-9-master-py3: {extends: '.test_instance'}
  148. # default-ubuntu-2004-master-py3: {extends: '.test_instance'}
  149. # modules-ubuntu-2004-master-py3: {extends: '.test_instance'}
  150. ubuntu-2004-master-py3: {extends: '.test_instance'}
  151. # default-ubuntu-1804-master-py3: {extends: '.test_instance'}
  152. # modules-ubuntu-1804-master-py3: {extends: '.test_instance'}
  153. ubuntu-1804-master-py3: {extends: '.test_instance'}
  154. # default-centos-stream8-master-py3: {extends: '.test_instance_failure_permitted'}
  155. # modules-centos-stream8-master-py3: {extends: '.test_instance_failure_permitted'}
  156. centos-stream8-master-py3: {extends: '.test_instance_failure_permitted'}
  157. # default-centos-7-master-py3: {extends: '.test_instance'}
  158. # modules-centos-7-master-py3: {extends: '.test_instance'}
  159. centos-7-master-py3: {extends: '.test_instance'}
  160. # default-fedora-34-master-py3: {extends: '.test_instance'}
  161. # modules-fedora-34-master-py3: {extends: '.test_instance'}
  162. fedora-34-master-py3: {extends: '.test_instance'}
  163. # default-opensuse-leap-153-master-py3: {extends: '.test_instance'}
  164. # modules-opensuse-leap-153-master-py3: {extends: '.test_instance'}
  165. opensuse-leap-153-master-py3: {extends: '.test_instance'}
  166. default-opensuse-tmbl-latest-master-py3: {extends: '.test_instance_failure_permitted'}
  167. # modules-opensuse-tmbl-latest-master-py3: {extends: '.test_instance_failure_permitted'}
  168. # opensuse-tmbl-latest-master-py3: {extends: '.test_instance_failure_permitted'}
  169. # https://community.letsencrypt.org/t/localhost-crt-does-not-exist-or-is-empty/103979
  170. default-amazonlinux-2-master-py3: {extends: '.test_instance'}
  171. # modules-amazonlinux-2-master-py3: {extends: '.test_instance'}
  172. # amazonlinux-2-master-py3: {extends: '.test_instance'}
  173. # default-oraclelinux-8-master-py3: {extends: '.test_instance'}
  174. # modules-oraclelinux-8-master-py3: {extends: '.test_instance'}
  175. # oraclelinux-8-master-py3: {extends: '.test_instance'}
  176. # default-oraclelinux-7-master-py3: {extends: '.test_instance'}
  177. # modules-oraclelinux-7-master-py3: {extends: '.test_instance'}
  178. oraclelinux-7-master-py3: {extends: '.test_instance'}
  179. # default-arch-base-latest-master-py3: {extends: '.test_instance'}
  180. modules-arch-base-latest-master-py3: {extends: '.test_instance'}
  181. # arch-base-latest-master-py3: {extends: '.test_instance'}
  182. # default-gentoo-stage3-latest-master-py3: {extends: '.test_instance'}
  183. # modules-gentoo-stage3-latest-master-py3: {extends: '.test_instance'}
  184. # gentoo-stage3-latest-master-py3: {extends: '.test_instance'}
  185. # default-gentoo-stage3-systemd-master-py3: {extends: '.test_instance'}
  186. # modules-gentoo-stage3-systemd-master-py3: {extends: '.test_instance'}
  187. # gentoo-stage3-systemd-master-py3: {extends: '.test_instance'}
  188. # default-almalinux-8-master-py3: {extends: '.test_instance'}
  189. # modules-almalinux-8-master-py3: {extends: '.test_instance'}
  190. almalinux-8-master-py3: {extends: '.test_instance'}
  191. # default-rockylinux-8-master-py3: {extends: '.test_instance'}
  192. # modules-rockylinux-8-master-py3: {extends: '.test_instance'}
  193. rockylinux-8-master-py3: {extends: '.test_instance'}
  194. # default-debian-11-3004-0-py3: {extends: '.test_instance'}
  195. # default-debian-10-3004-0-py3: {extends: '.test_instance'}
  196. # default-debian-9-3004-0-py3: {extends: '.test_instance'}
  197. # default-ubuntu-2004-3004-0-py3: {extends: '.test_instance'}
  198. # default-ubuntu-1804-3004-0-py3: {extends: '.test_instance'}
  199. # default-centos-stream8-3004-0-py3: {extends: '.test_instance_failure_permitted'}
  200. # default-centos-7-3004-0-py3: {extends: '.test_instance'}
  201. # default-fedora-34-3004-0-py3: {extends: '.test_instance'}
  202. # default-opensuse-leap-153-3004-0-py3: {extends: '.test_instance'}
  203. # default-opensuse-tmbl-latest-3004-0-py3: {extends: '.test_instance_failure_permitted'}
  204. # default-amazonlinux-2-3004-0-py3: {extends: '.test_instance'}
  205. # default-oraclelinux-8-3004-0-py3: {extends: '.test_instance'}
  206. # default-oraclelinux-7-3004-0-py3: {extends: '.test_instance'}
  207. # default-arch-base-latest-3004-0-py3: {extends: '.test_instance'}
  208. # default-gentoo-stage3-latest-3004-0-py3: {extends: '.test_instance'}
  209. # default-gentoo-stage3-systemd-3004-0-py3: {extends: '.test_instance'}
  210. # default-almalinux-8-3004-0-py3: {extends: '.test_instance'}
  211. # default-rockylinux-8-3004-0-py3: {extends: '.test_instance'}
  212. # default-debian-10-3003-3-py3: {extends: '.test_instance'}
  213. # default-debian-9-3003-3-py3: {extends: '.test_instance'}
  214. # default-ubuntu-2004-3003-3-py3: {extends: '.test_instance'}
  215. # default-ubuntu-1804-3003-3-py3: {extends: '.test_instance'}
  216. # default-centos-stream8-3003-3-py3: {extends: '.test_instance_failure_permitted'}
  217. # default-centos-7-3003-3-py3: {extends: '.test_instance'}
  218. # default-fedora-35-3003-3-py3: {extends: '.test_instance_failure_permitted'}
  219. # default-fedora-34-3003-3-py3: {extends: '.test_instance'}
  220. # default-opensuse-leap-153-3003-3-py3: {extends: '.test_instance'}
  221. # default-opensuse-tmbl-latest-3003-3-py3: {extends: '.test_instance_failure_permitted'}
  222. # default-amazonlinux-2-3003-3-py3: {extends: '.test_instance'}
  223. # default-oraclelinux-8-3003-3-py3: {extends: '.test_instance'}
  224. # default-oraclelinux-7-3003-3-py3: {extends: '.test_instance'}
  225. # default-gentoo-stage3-latest-3003-3-py3: {extends: '.test_instance'}
  226. # default-gentoo-stage3-systemd-3003-3-py3: {extends: '.test_instance'}
  227. # default-almalinux-8-3003-3-py3: {extends: '.test_instance'}
  228. # default-debian-10-3002-7-py3: {extends: '.test_instance'}
  229. # default-debian-9-3002-7-py3: {extends: '.test_instance'}
  230. # default-ubuntu-2004-3002-7-py3: {extends: '.test_instance'}
  231. # default-ubuntu-1804-3002-7-py3: {extends: '.test_instance'}
  232. # default-centos-7-3002-7-py3: {extends: '.test_instance'}
  233. # default-fedora-35-3002-7-py3: {extends: '.test_instance_failure_permitted'}
  234. # default-fedora-34-3002-7-py3: {extends: '.test_instance'}
  235. # default-opensuse-leap-153-3002-7-py3: {extends: '.test_instance'}
  236. # default-opensuse-tmbl-latest-3002-7-py3: {extends: '.test_instance_failure_permitted'}
  237. # default-amazonlinux-2-3002-7-py3: {extends: '.test_instance'}
  238. # default-oraclelinux-8-3002-7-py3: {extends: '.test_instance'}
  239. # default-oraclelinux-7-3002-7-py3: {extends: '.test_instance'}
  240. # default-gentoo-stage3-latest-3002-7-py3: {extends: '.test_instance'}
  241. # default-gentoo-stage3-systemd-3002-7-py3: {extends: '.test_instance'}
  242. ###############################################################################
  243. # `release` stage: `semantic-release`
  244. ###############################################################################
  245. semantic-release:
  246. only: *only_branch_master_parent_repo
  247. stage: *stage_release
  248. image: *image_semanticrelease
  249. variables:
  250. MAINTAINER_TOKEN: '${GH_TOKEN}'
  251. script:
  252. # Update `AUTHORS.md`
  253. - '${HOME}/go/bin/maintainer contributor'
  254. # Run `semantic-release`
  255. - 'semantic-release'