mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
builders.py: fix for AB helper repo branch being ignored.
Signed-off-by: Thomas Goodwin <btgoodwin@geontech.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
c6ff41a4c7
commit
2c765c32d0
|
@ -140,6 +140,7 @@ def create_builder_factory():
|
||||||
name="Clobber build dir"))
|
name="Clobber build dir"))
|
||||||
f.addStep(steps.Git(
|
f.addStep(steps.Git(
|
||||||
repourl=config.repos["yocto-autobuilder-helper"][0],
|
repourl=config.repos["yocto-autobuilder-helper"][0],
|
||||||
|
branch=config.repos["yocto-autobuilder-helper"][1],
|
||||||
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,
|
||||||
|
@ -208,6 +209,7 @@ def create_parent_builder_factory(buildername, waitname):
|
||||||
# check out the source
|
# check out the source
|
||||||
factory.addStep(steps.Git(
|
factory.addStep(steps.Git(
|
||||||
repourl=config.repos["yocto-autobuilder-helper"][0],
|
repourl=config.repos["yocto-autobuilder-helper"][0],
|
||||||
|
branch=config.repos["yocto-autobuilder-helper"][1],
|
||||||
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