Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
scheduler
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
scheduler
Merge requests
!157
#3463494
Add allow_failure:true when not a MR
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
#3463494
Add allow_failure:true when not a MR
issue/scheduler-3463494:3463494-next-major
into
2.x
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Jonathan Smith
requested to merge
issue/scheduler-3463494:3463494-next-major
into
2.x
7 months ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Closes
#3463494
0
0
Merge request reports
Compare
2.x
version 1
f55e949e
7 months ago
2.x (base)
and
latest version
latest version
f55e949e
1 commit,
7 months ago
version 1
f55e949e
1 commit,
7 months ago
1 file
+
11
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
11
−
7
Options
@@ -77,20 +77,24 @@ composer (previous minor):
allow_failure
:
true
# For merge requests always run Next Major and Previous Major automatically.
# For all other types of pipeline allow them to be run manually.
# For all other types of pipeline allow them to be run manually). This needs
# 'allow_failure: true' otherwise the pipeline status is 'blocked' and the
# stages show 'running' without ever appearing to finish.
composer (previous major)
:
rules
:
-
!reference
[
.opt-in-previous-major-rule
]
-
if
:
$CI_PIPELINE_SOURCE == "merge_request_event"
when
:
on_success
-
when
:
manual
-
if
:
$CI_PIPELINE_SOURCE != "merge_request_event"
when
:
manual
allow_failure
:
true
-
when
:
on_success
composer (next major)
:
rules
:
-
!reference
[
.opt-in-next-major-rule
]
-
if
:
$CI_PIPELINE_SOURCE == "merge_request_event"
when
:
on_success
-
when
:
manual
-
if
:
$CI_PIPELINE_SOURCE != "merge_request_event"
when
:
manual
allow_failure
:
true
-
when
:
on_success
before_script
:
# Swap in a different composer file for Next Major. This loads dev versions or merge-request branches of several
# third-party modules which are required for testing, but which do not have Drupal 11 release yet.
Loading