builders.py: fix for AB helper repo branch being ignored.

Signed-off-by: Thomas Goodwin <btgoodwin@geontech.com>
This commit is contained in:
Thomas Goodwin 2019-08-01 09:45:53 -04:00
parent 39b23f4048
commit 1845031e27

View File

@ -169,6 +169,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,
@ -238,6 +239,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,