mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
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:
parent
61446e2b49
commit
9315359ffb
|
@ -139,7 +139,7 @@ def create_builder_factory():
|
||||||
haltOnFailure=True,
|
haltOnFailure=True,
|
||||||
name="Clobber build dir"))
|
name="Clobber build dir"))
|
||||||
f.addStep(steps.Git(
|
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"),
|
workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"),
|
||||||
mode='incremental',
|
mode='incremental',
|
||||||
haltOnFailure=True,
|
haltOnFailure=True,
|
||||||
|
@ -207,7 +207,7 @@ def create_parent_builder_factory(waitname):
|
||||||
name="Clobber build dir"))
|
name="Clobber build dir"))
|
||||||
# check out the source
|
# check out the source
|
||||||
factory.addStep(steps.Git(
|
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"),
|
workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"),
|
||||||
mode='incremental',
|
mode='incremental',
|
||||||
haltOnFailure=True,
|
haltOnFailure=True,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user