From 5bed46c99a68f6c4e4169fc183711e7e649947ec Mon Sep 17 00:00:00 2001 From: catch <6915-catch@users.noreply.drupalcode.org> Date: Wed, 21 Aug 2024 11:41:02 +0900 Subject: [PATCH] Revert "Issue #3468848 by catch: Allow child jobs to run as soon as phpcs and spellcheck are completed" This reverts commit 7ca814c420aaf1b9a850d4521694a14ba54af1ca. --- .gitlab-ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 48e06665b889..b2fcb73c3bf4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,8 +27,6 @@ ################ workflow: - auto_cancel: - on_job_failure: all 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 @@ -116,11 +114,6 @@ default: .default-stage: &default-stage stage: ðŸ—œï¸ Test - needs: - # Start the child jobs as soon as phpcs passes. - - "🧹 PHP Coding standards (PHPCS)" - - "📔 Spell-checking" - trigger: # Rely on the status of the child pipeline. strategy: depend -- GitLab