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:
Thomas Goodwin 2019-08-01 14:39:15 -04:00 committed by Richard Purdie
parent c6ff41a4c7
commit 2c765c32d0

View File

@ -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,