mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 12:49:03 +02:00
builders.py: fix for AB helper repo branch being ignored.
Signed-off-by: Thomas Goodwin <btgoodwin@geontech.com>
This commit is contained in:
parent
39b23f4048
commit
1845031e27
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user