Skip to content
Snippets Groups Projects
Commit ea3aa816 authored by Jonas Höppner's avatar Jonas Höppner
Browse files

CI: Readd allow_failure:true to fix not finished pipelines

According to the docs a manual job always has allow_failure set to
true, but we see a lot of jobs staying in an unfinished state since
the removal of the allow_failure: true keyword for the sdk and test
jobs. This should fix the broken behaviour.
parent dc0503b6
No related branches found
No related tags found
1 merge request!179CI: Add allow_failure:true to fix not finished pipelines
Pipeline #22737 waiting for manual action with stages
in 4 minutes and 30 seconds
...@@ -168,6 +168,7 @@ variables: ...@@ -168,6 +168,7 @@ variables:
stage: build stage: build
rules: rules:
- when: manual - when: manual
allow_failure: true
variables: variables:
BITBAKE_TASK: "populate_sdk" BITBAKE_TASK: "populate_sdk"
...@@ -222,6 +223,7 @@ variables: ...@@ -222,6 +223,7 @@ variables:
- .package - .package
rules: rules:
- when: manual - when: manual
allow_failure: true
artifacts: artifacts:
paths: paths:
- release/**/**/* - release/**/**/*
...@@ -240,6 +242,7 @@ variables: ...@@ -240,6 +242,7 @@ variables:
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
when: manual when: manual
allow_failure: true
timeout: 30m timeout: 30m
.uploadsdkftp: .uploadsdkftp:
......
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