Skip to content
Snippets Groups Projects
Commit 8a38f194 authored by Tim Jaacks's avatar Tim Jaacks
Browse files

Put all manifest intgeration jobs into a single stage

parent a09564c1
No related branches found
No related tags found
1 merge request!189Multiple integration pipelines
Pipeline #28257 waiting for manual action with stages
in 26 seconds
......@@ -16,10 +16,6 @@ workflow:
stages:
- infrastructure
- integrate
- merge
- build
- check
# --------------------------------------------------------------------------------------
# Stage: infrastructure
......@@ -59,7 +55,6 @@ yamllint:
# --------------------------------------------------------------------------------------
merge:
extends: .infrastructure
stage: merge
rules:
- if: $CI_COMMIT_BRANCH == $SOURCE_BRANCH
script:
......@@ -82,7 +77,8 @@ merge:
# Stage: build
# --------------------------------------------------------------------------------------
build:
stage: build
stage: infrastructure
needs: ["integrate"]
rules:
# Do not run build if the "skip build" label is set on the merge request
- if: $CI_MERGE_REQUEST_LABELS =~ /skip build/
......@@ -100,7 +96,6 @@ build:
# --------------------------------------------------------------------------------------
check:
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/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment