docs(gitlab-ci): tweak comments

This commit is contained in:
Sarah Vaupel 2024-09-04 06:00:34 +02:00
parent fa02a0727a
commit 71afd4a0df
3 changed files with 6 additions and 8 deletions

View File

@ -6,12 +6,9 @@
# Our pipeline consists of static and dynamic parts.
#
# This file only contains the static parts of our pipeline.
# Dynamic jobs are defined in .gitlab-ci/dynamic-ci.yml.
# These are used as a template to generate jobs during the pipeline runtime.
#
# The marker "#dyn#" (without quotes) will be replaced by concrete values.
#
# TODO: documentation about dynamic stage
# Dynamic jobs are defined in .gitlab-ci/frontend.yml and .gitlab-ci/backend.yml.
# These are used as a template to generate downstream (child) pipelines during
# the runtime of the upstream (parent) pipeline.
###
@ -103,6 +100,7 @@ setup:containers:frontend:
rules:
- when: always
# TODO: switch to exec logic as above (see frontend container)
setup:containers:backend: &containers-backend
stage: setup
needs:

View File

@ -5,7 +5,7 @@
### IMPORTANT NOTICE ###
# Our pipeline consists of static and dynamic parts.
#
# This file only contains the dynamic parts of our pipeline.
# This file only contains the dynamic backend parts of our pipeline.
# Static jobs are defined in .gitlab-ci.yml.
#
# The marker "#dyn#" (without quotes) will be replaced by concrete values.

View File

@ -5,7 +5,7 @@
### IMPORTANT NOTICE ###
# Our pipeline consists of static and dynamic parts.
#
# This file only contains the dynamic parts of our pipeline.
# This file only contains the dynamic frontend parts of our pipeline.
# Static jobs are defined in .gitlab-ci.yml.
#
# The marker "#dyn#" (without quotes) will be replaced by concrete values.