diff mbox series

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

Message ID 20260106-riscv-whinlatter-v1-1-cb4210f7b674@pbarker.dev
State New
Headers show
Series [yocto-autobuilder-helper,whinlatter] getproperties: Ignore meta-riscv for nightly-check-layer | expand

Commit Message

Paul Barker Jan. 6, 2026, 1:15 p.m. UTC
We only test meta-riscv on the master branch at the moment.

Signed-off-by: Paul Barker <paul@pbarker.dev>
---
Tested on autobuilder:
  https://autobuilder.yoctoproject.org/valkyrie/#/builders/85/builds/901

This build still failed due to issues in meta-intel, but it got past the
"Load build revisions" step where it was previously failing.
---
 scripts/getproperties.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---
base-commit: 6f793956c9b43f7a74f5a22c86a93b744b21ada9
change-id: 20260106-riscv-whinlatter-8984f0ebed5b

Best regards,
diff mbox series

Patch

diff --git a/scripts/getproperties.py b/scripts/getproperties.py
index 39930c55d8ac..90ca1ef45d1d 100755
--- a/scripts/getproperties.py
+++ b/scripts/getproperties.py
@@ -56,7 +56,7 @@  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']:
+    if not os.path.exists(layerpath) and repo in ['meta-security', 'meta-riscv']:
         # Repos is specified on the controller but not used in the helper config
         continue
     getrevs(jsonprops, layerpath, repo)