Skip to content
Snippets Groups Projects
Commit b6e66192 authored by Tobias Kahlki's avatar Tobias Kahlki
Browse files

pipelines:build: Add check to JSON generation

Without the check, we have a race condition when building from sources
outside of the Yocto group.
parent 42bfe4f0
No related branches found
No related tags found
1 merge request!377pipelines:build: Add check to JSON generation
Pipeline #101635 skipped with stage
...@@ -354,6 +354,19 @@ azure-{{ machine }}: ...@@ -354,6 +354,19 @@ azure-{{ machine }}:
generate-firmware-package-{{ machine }}: generate-firmware-package-{{ machine }}:
extends: .generate_firmware_package extends: .generate_firmware_package
{% if CI_COMMIT_TAG is defined %}
rules:
- if: $DEPLOY_RELEASE_TARGET !~ /^./
when: never
- when: manual
allow_failure: true
{% else %}
rules:
- if: $DEPLOY_INTERNAL_RELEASE_TARGET !~ /^./
when: never
- when: manual
allow_failure: true
{% endif %}
variables: variables:
MACHINE: {{ machine }} MACHINE: {{ machine }}
needs: needs:
......
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