]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
selftest/bblayers: do not assume integrated poky repo
authorAlexander Kanavin <alex@linutronix.de>
Mon, 6 Oct 2025 11:34:17 +0000 (13:34 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 6 Oct 2025 22:15:57 +0000 (23:15 +0100)
The autobuilder is being transitioned to bitbake-setup which
sets up individual repositories that yocto is made of. Adjust
hardcoded revisions to match these repositories.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/bblayers.py

index 7eb176aa04b50a77d04d92627e4afb73be5d936e..08bc1d1e442cceb6184a31356b132b062ee587d4 100644 (file)
@@ -157,7 +157,10 @@ class BitbakeLayers(OESelftestTestCase):
         with open(jsonfile) as f:
             data = json.load(f)
         for s in data['sources']:
-            data['sources'][s]['git-remote']['rev'] = '5200799866b92259e855051112520006e1aaaac0'
+            if s == 'meta-yocto':
+                data['sources'][s]['git-remote']['rev'] = '913bd8ba4dd1d5d2a38261bde985b64a36e36281'
+            else:
+                data['sources'][s]['git-remote']['rev'] = '744a2277844ec9a384a9ca7dae2a634d5a0d3590'
         with open(jsonfile, 'w') as f:
             json.dump(data, f)