diff mbox series

[yocto-autobuilder-helper,whinlatter] getproperties: Ignore meta-qcom for nightly-check-layer

Message ID 20260227-contrib-mathieu-fix-check-layer-nightly-qcom-v1-1-de7022338274@bootlin.com
State New
Headers show
Series [yocto-autobuilder-helper,whinlatter] getproperties: Ignore meta-qcom for nightly-check-layer | expand

Commit Message

Mathieu Dubois-Briand Feb. 27, 2026, 11:51 a.m. UTC
The repository was removed from NEEDREPOS on check-layer-nightly: it
will be missing in such builds and so should be ignored by
getproperties.py.

Fixes [YOCTO #16186]

Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
---
 scripts/getproperties.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


---
base-commit: dd90ba998f860ffe1941619f1cee98223ef7554d
change-id: 20260227-contrib-mathieu-fix-check-layer-nightly-qcom-98a5d4ad69b9

Best regards,
diff mbox series

Patch

diff --git a/scripts/getproperties.py b/scripts/getproperties.py
index 90ca1ef45d1d..0f2b59602462 100755
--- a/scripts/getproperties.py
+++ b/scripts/getproperties.py
@@ -56,7 +56,8 @@  for repo in sorted(repos.keys()):
     if not os.path.exists(layerpath):
         # layer may not be used by the build and hence not moved into final position
         layerpath = builddir + '/repos/' + repo
-    if not os.path.exists(layerpath) and repo in ['meta-security', 'meta-riscv']:
+    if not os.path.exists(layerpath) and repo in ['meta-security', 'meta-riscv',
+                                                  'meta-qcom']:
         # Repos is specified on the controller but not used in the helper config
         continue
     getrevs(jsonprops, layerpath, repo)