config.json/utils: Update buildhistory mappings after poky -> openembedded-core transition

The results were not being stored correctly since the mappings needed updating
after the move poky -> oe-core.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2025-11-28 15:13:03 +00:00
parent 6f227ad26b
commit 0c0c7b41de
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"BUILD_HISTORY_DIR" : "buildhistory",
"BUILD_HISTORY_REPO" : "ssh://git@push.yoctoproject.org/poky-buildhistory",
"BUILD_HISTORY_FORKPUSH" : {"poky-contrib:ross/mut" : "poky:master", "poky-contrib:abelloni/master-next": "poky:master", "poky:master-next" : "poky:master"},
"BUILD_HISTORY_FORKPUSH" : {"openembedded-core-contrib:ross/mut" : "openembedded-core:master", "openembedded-core-contrib:abelloni/master-next": "openembedded-core:master", "openembedded-core:master-next" : "openembedded-core:master"},
"BUILDTOOLS_URL" : "https://downloads.yoctoproject.org/releases/yocto/milestones/yocto-5.2_M2/buildtools/x86_64-buildtools-extended-nativesdk-standalone-5.1.sh",
"BUILDTOOLS_ARM_URL" : "https://downloads.yoctoproject.org/releases/yocto/milestones/yocto-5.2_M2/buildtools/aarch64-buildtools-extended-nativesdk-standalone-5.1.sh",

View File

@ -26,7 +26,7 @@ def is_a_main_branch(reponame, branchname):
includes master and release branches in poky, while excluding "next"
branches
"""
return reponame == "poky" and not branchname.endswith("-next")
return reponame == "openembedded-core" and not branchname.endswith("-next")
#
# Check if config contains all the listed params