From 7d038d763fd95d7e3c23a861d862afce8f61ffcb Mon Sep 17 00:00:00 2001 From: Patrick Kenny <33362-ptmkenny@users.noreply.drupalcode.org> Date: Wed, 28 Aug 2024 10:13:43 +0000 Subject: [PATCH] Issue #3470666 by ptmkenny: Require optional CI tests to pass --- .gitlab-ci.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e5384a8..1a26105 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,12 +18,26 @@ include: - "/includes/include.drupalci.variables.yml" - "/includes/include.drupalci.workflows.yml" +# Require optional CI tests to pass. +composer-lint: + allow_failure: false +cspell: + allow_failure: false +eslint: + allow_failure: false +phpcs: + allow_failure: false +phpstan: + allow_failure: false + ################ # Pipeline configuration variables are defined with default values and descriptions in the file # https://git.drupalcode.org/project/gitlab_templates/-/blob/main/includes/include.drupalci.variables.yml # Uncomment the lines below if you want to override any of the variables. The following is just an example. ################ -# variables: +variables: + OPT_IN_TEST_MAX_PHP: '1' + OPT_IN_TEST_PREVIOUS_MAJOR: '1' # SKIP_ESLINT: '1' # OPT_IN_TEST_NEXT_MAJOR: '1' # _CURL_TEMPLATES_REF: 'main' -- GitLab