Skip to content
Snippets Groups Projects
Verified Commit 129230f1 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 6c5b3b47
Branches
Tags
28 merge requests!11958Issue #3490507 by alexpott, smustgrave: Fix bogus mocking in...,!11769Issue #3517987: Add option to contextual filters to encode slashes in query parameter.,!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!10602Issue #3438769 by vinmayiswamy, antonnavi, michelle, amateescu: Sub workspace does not clear,!10301Issue #3469309 by mstrelan, smustgrave, moshe weitzman: Use one-time login...,!10187Issue #3487488 by dakwamine: ExtensionMimeTypeGuesser::guessMimeType must support file names with "0" (zero) like foo.0.zip,!9944Issue #3483353: Consider making the createCopy config action optionally fail...,!9929Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9787Resolve issue 3479427 - bootstrap barrio issue under Windows,!9742Issue #3463908 by catch, quietone: Split OptionsFieldUiTest into two,!9526Issue #3458177 by mondrake, catch, quietone, godotislate, longwave, larowlan,...,!8738Issue #3424162 by camilledavis, dineshkumarbollu, smustgrave: Claro...,!8704Make greek characters available in ckeditor5,!8597Draft: Issue #3442259 by catch, quietone, dww: Reduce time of Migrate Upgrade tests...,!8533Issue #3446962 by kim.pepper: Remove incorrectly added...,!8517Issue #3443748 by NexusNovaz, smustgrave: Testcase creates false positive,!8325Update file Sort.php,!8095Expose document root on install,!7930Resolve #3427374 "Taxonomytid viewsargumentdefault plugin",!7627Issue #3439440 by nicxvan, Binoli Lalani, longwave: Remove country support from DateFormatter,!7445Issue #3440169: When using drupalGet(), provide an associative array for $headers,!7401#3271894 Fix documented StreamWrapperInterface return types for realpath() and dirname(),!7384Add constraints to system.advisories,!7078Issue #3320569 by Spokje, mondrake, smustgrave, longwave, quietone, Lendude,...,!6622Issue #2559833 by piggito, mohit_aghera, larowlan, guptahemant, vakulrai,...,!6502Draft: Resolve #2938524 "Plach testing issue",!38582585169-10.1.x,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key
Pipeline #106362 passed with warnings
Pipeline: drupal

#106382

    Pipeline: drupal

    #106375

      Pipeline: drupal

      #106369

        # 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.
        Please register or to comment