diff mbox series

[yocto-autobuilder-helper,1/2] config.json: check-layer: Fix testing of core layers

Message ID 20260328-checklayer-v1-1-36bb1873751b@pbarker.dev
State New
Headers show
Series Extend and fix check-layer job | expand

Commit Message

Paul Barker March 28, 2026, 10:02 a.m. UTC
We need to ensure that meta-poky and meta-yocto-bsp are not in BBLAYERS
when we try to run yocto-check-layer against them. We can also now run
yocto-check-layer against the core meta layer.

Signed-off-by: Paul Barker <paul@pbarker.dev>
---
 config.json | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/config.json b/config.json
index 0902e8620b0d..c778d26f5b84 100644
--- a/config.json
+++ b/config.json
@@ -1303,12 +1303,18 @@ 
             "NEEDREPOS" : ["bitbake", "meta-mingw"],
             "DISTRO" : "nodistro",
             "step1" : {
-                "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-poky"]
+                "EXTRACMDS" : [
+                    "bitbake-layers remove-layer meta-poky meta-yocto-bsp",
+                    "yocto-check-layer ../layers/openembedded-core/meta"
+                ]
             },
             "step2" : {
-                "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-yocto-bsp"]
+                "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-poky"]
             },
             "step3" : {
+                "EXTRACMDS" : ["yocto-check-layer ../layers/meta-yocto/meta-yocto-bsp"]
+            },
+            "step4" : {
                 "EXTRACMDS" : ["yocto-check-layer-wrapper ../meta-mingw"]
             }
         },