builders/config: Use a shorter codebase name for docs

The introduction of codebases for docs builder changed the git clone
steps internal names, as they are now suffixed with the codebase name.
This new name for the yocto-autobuilder-helper seems to be too long for
the database used on our autobuilder and triggers an exception. Use a
shorter codebase name to fix this issue.

Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Mathieu Dubois-Briand 2024-10-23 16:25:07 +02:00 committed by Richard Purdie
parent b6a8b1eac1
commit f6a7a67425
2 changed files with 3 additions and 3 deletions

View File

@ -382,7 +382,7 @@ def create_doc_builder_factory():
f.addStep(steps.Git(
repourl=config.repos["yocto-autobuilder-helper"][0],
branch=config.repos["yocto-autobuilder-helper"][1],
codebase='yocto-autobuilder-helper',
codebase='yab-helper',
workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"),
mode='incremental',
haltOnFailure=True,

View File

@ -497,7 +497,7 @@ schedulers.append(parent_scheduler("a-full"))
schedulers.append(sched.ForceScheduler(
name="docs",
builderNames=["docs"],
codebases=[util.CodebaseParameter(codebase='yocto-autobuilder-helper',
codebases=[util.CodebaseParameter(codebase='yab-helper',
label="yocto-autobuilder-helper:",
project=None),
util.CodebaseParameter(codebase='yocto-docs',
@ -581,7 +581,7 @@ schedulers.append(sched.Nightly(name='sschduler-indexing', branch='master', prop
# If any of our sphinx docs branches change, trigger a build
schedulers.append(sched.AnyBranchScheduler(name="yocto-docs-changed",
change_filter=util.ChangeFilter(project=["yocto-docs"], branch=[None, "master", "master-next", "styhead", "scarthgap", "mickledore", "langdale", "kirkstone", "honister", "hardknott", "gatesgarth", "dunfell", "transition"]),
codebases = ['yocto-autobuilder-helper', 'yocto-docs', 'bitbake'],
codebases = ['yab-helper', 'yocto-docs', 'bitbake'],
treeStableTimer=60,
builderNames=["docs"]))