From b6e661928be30eeab2fd66290baa26f9b7dd0b34 Mon Sep 17 00:00:00 2001
From: Tobias Poganiuch <tobias.poganiuch@seco.com>
Date: Tue, 9 Jan 2024 09:53:03 +0100
Subject: [PATCH] pipelines:build: Add check to JSON generation

Without the check, we have a race condition when building from sources
outside of the Yocto group.
---
 build-pipeline-yocto.yml.jinja2 | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/build-pipeline-yocto.yml.jinja2 b/build-pipeline-yocto.yml.jinja2
index 80874aa8..7ceb0c28 100644
--- a/build-pipeline-yocto.yml.jinja2
+++ b/build-pipeline-yocto.yml.jinja2
@@ -354,6 +354,19 @@ azure-{{ machine }}:
 
 generate-firmware-package-{{ machine }}:
   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:
     MACHINE: {{ machine }}
   needs:
-- 
GitLab