Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gitlab-ci
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SECO Northern Europe
Yocto
infrastructure
gitlab-ci
Compare revisions
ad9d367e52a0f364f4a3559e5b5005ec554110cb to 5e51407649eaa7b82f3e845a7c2cc8d06e93f6d3
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
seco-ne/yocto/infrastructure/gitlab-ci
Select target project
No results found
5e51407649eaa7b82f3e845a7c2cc8d06e93f6d3
Select Git revision
Swap
Target
seco-ne/yocto/infrastructure/gitlab-ci
Select target project
seco-ne/yocto/infrastructure/gitlab-ci
1 result
ad9d367e52a0f364f4a3559e5b5005ec554110cb
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add possibility to skip MR pipeline build via label
· ee151673
Tim Jaacks
authored
2 years ago
ee151673
Add possibility to skip MR pipeline check via label
· 5e514076
Tim Jaacks
authored
2 years ago
5e514076
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ci-test-manifest-integration.yml
+3
-0
3 additions, 0 deletions
ci-test-manifest-integration.yml
common.yml
+3
-0
3 additions, 0 deletions
common.yml
manifest-integration.yml
+3
-0
3 additions, 0 deletions
manifest-integration.yml
with
9 additions
and
0 deletions
ci-test-manifest-integration.yml
View file @
5e514076
...
...
@@ -124,6 +124,9 @@ merge:
build
:
stage
:
build
rules
:
# Do not run build if the "skip build" label is set on the merge request
-
if
:
$CI_MERGE_REQUEST_LABELS =~ /skip build/
when
:
never
# execute this in MR only and not for integrate/gitlab-ci/ integrations
# branches. These are build after the integration has been done in all
# projects
...
...
This diff is collapsed.
Click to expand it.
common.yml
View file @
5e514076
...
...
@@ -56,6 +56,9 @@ yamllint:
extends
:
.infrastructure
stage
:
check
rules
:
# Do not run check if the "skip build" label is set on the merge request
-
if
:
$CI_MERGE_REQUEST_LABELS =~ /skip build/
when
:
never
# Do not integration pipeline for merge requests for integrate/gitlab-ci/ branches
# The integration is done from the pipeline in gitlab-ci already
-
if
:
$CI_COMMIT_REF_NAME =~ /^integrate\/gitlab-ci\/.*/
...
...
This diff is collapsed.
Click to expand it.
manifest-integration.yml
View file @
5e514076
...
...
@@ -110,6 +110,9 @@ merge:
build
:
stage
:
build
rules
:
# Do not run build if the "skip build" label is set on the merge request
-
if
:
$CI_MERGE_REQUEST_LABELS =~ /skip build/
when
:
never
# execute this in MR only and not for integrate/gitlab-ci/ integrations
# branches. These are build after the integration has been done in all
# projects
...
...
This diff is collapsed.
Click to expand it.