Issue #3420050 by fjgarlin, poker10: [D7] Bring external template files into core

merge-requests/7476/head
mcdruid 2024-04-12 14:45:14 +01:00
parent 444c26dd1b
commit 122657282e
No known key found for this signature in database
1 changed files with 26 additions and 13 deletions

View File

@ -10,23 +10,35 @@
################ ################
################ ################
# Includes # Workflow
# #
# Additional configuration can be provided through includes. # Define conditions for when the pipeline will run.
# One advantage of include files is that if they are updated upstream, the # For example:
# changes affect all pipelines using that include. # * On commit
# * On merge request
# * On manual trigger
# * etc.
# https://docs.gitlab.com/ee/ci/jobs/job_control.html#specify-when-jobs-run-with-rules
# #
# Includes can be overriden by re-declaring anything provided in an include, # Pipelines can also be configured to run on a schedule,though they still must meet the conditions defined in Workflow and Rules. This can be used, for example, to do nightly regression testing:
# here in gitlab-ci.yml # https://gitlab.com/help/ci/pipelines/schedules
# https://docs.gitlab.com/ee/ci/yaml/includes.html#override-included-configuration-values
################ ################
include: workflow:
- project: $_GITLAB_TEMPLATES_REPO rules:
ref: $_GITLAB_TEMPLATES_REF # These 3 rules from https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Workflows/MergeRequest-Pipelines.gitlab-ci.yml
file: # Run on merge requests
- '/includes/include.drupalci.variables.yml' - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
- '/includes/include.drupalci.workflows.yml' # Run when called from an upstream pipeline https://docs.gitlab.com/ee/ci/pipelines/downstream_pipelines.html?tab=Multi-project+pipeline#use-rules-to-control-downstream-pipeline-jobs
- if: $CI_PIPELINE_SOURCE == 'pipeline'
# Run on commits.
- if: $CI_PIPELINE_SOURCE == "push" && $CI_PROJECT_ROOT_NAMESPACE == "project"
# The last rule above blocks manual and scheduled pipelines on non-default branch. The rule below allows them:
- if: $CI_PIPELINE_SOURCE == "schedule" && $CI_PROJECT_ROOT_NAMESPACE == "project"
# Run if triggered from Web using 'Run Pipelines'
- if: $CI_PIPELINE_SOURCE == "web"
# Run if triggered from WebIDE
- if: $CI_PIPELINE_SOURCE == "webide"
################ ################
# Variables # Variables
@ -42,6 +54,7 @@ include:
################ ################
variables: variables:
_CONFIG_DOCKERHUB_ROOT: "drupalci"
_TARGET_PHP: "8.1" _TARGET_PHP: "8.1"
CONCURRENCY: 15 CONCURRENCY: 15
GIT_DEPTH: "3" GIT_DEPTH: "3"