Skip to content
Snippets Groups Projects
Verified Commit da6376b9 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3420042 by fjgarlin, longwave, catch: Bring external template files into core

(cherry picked from commit 1366a3ae)
parent c89eb275
No related branches found
No related tags found
8 merge requests!8376Drupal views: adding more granularity to the ‘use ajax’ functionality,!8300Issue #3443586 View area displays even when parent view has no results.,!7567Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7565Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7509Change label "Block description" to "Block type",!7344Issue #3292350 by O'Briat, KlemenDEV, hswong3i, smustgrave, quietone: Update...,!6922Issue #3412959 by quietone, smustgrave, longwave: Fix 12 'un' words,!6848Issue #3417553 by longwave: Remove withConsecutive() in CacheCollectorTest
Pipeline #106361 passed with warnings
Pipeline: drupal

#106383

    Pipeline: drupal

    #106378

      Pipeline: drupal

      #106372

        +1
        # cspell:ignore codequality Micheh micheh
        # cspell:ignore codequality Micheh micheh webide
        ################
        # Drupal GitLabCI template.
        ......@@ -12,23 +12,35 @@
        ################
        ################
        # Includes
        # Workflow
        #
        # Additional configuration can be provided through includes.
        # One advantage of include files is that if they are updated upstream, the
        # changes affect all pipelines using that include.
        # Define conditions for when the pipeline will run.
        # For example:
        # * 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 overridden by re-declaring anything provided in an include,
        # here in gitlab-ci.yml.
        # https://docs.gitlab.com/ee/ci/yaml/includes.html#override-included-configuration-values
        # 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:
        # https://gitlab.com/help/ci/pipelines/schedules
        ################
        include:
        - project: $_GITLAB_TEMPLATES_REPO
        ref: $_GITLAB_TEMPLATES_REF
        file:
        - '/includes/include.drupalci.variables.yml'
        - '/includes/include.drupalci.workflows.yml'
        workflow:
        rules:
        # These 3 rules from https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Workflows/MergeRequest-Pipelines.gitlab-ci.yml
        # Run on merge requests
        - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
        # 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
        ......@@ -42,7 +54,7 @@ include:
        ################
        variables:
        COMPOSER: composer.json
        _CONFIG_DOCKERHUB_ROOT: "drupalci"
        # Let composer know what self.version means.
        COMPOSER_ROOT_VERSION: "${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}${CI_COMMIT_BRANCH}-dev"
        CONCURRENCY: 24
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment