builders.py: Don't hardcode the url to the autobuilder-helper

Use the standard list of repos we already have instead.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2018-11-22 12:47:34 +00:00
parent 61446e2b49
commit 9315359ffb

View File

@ -139,7 +139,7 @@ def create_builder_factory():
haltOnFailure=True,
name="Clobber build dir"))
f.addStep(steps.Git(
repourl='git://git.yoctoproject.org/yocto-autobuilder-helper',
repourl=config.repos["yocto-autobuilder-helper"][0],
workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"),
mode='incremental',
haltOnFailure=True,
@ -207,7 +207,7 @@ def create_parent_builder_factory(waitname):
name="Clobber build dir"))
# check out the source
factory.addStep(steps.Git(
repourl='git://git.yoctoproject.org/yocto-autobuilder-helper',
repourl=config.repos["yocto-autobuilder-helper"][0],
workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"),
mode='incremental',
haltOnFailure=True,