[yocto] [yocto-autobuilder2][PATCH] builders.py: fix for AB helper repo branch being ignored.

Thomas Goodwin btgoodwin at geontech.com
Thu Aug 1 11:39:15 PDT 2019


Signed-off-by: Thomas Goodwin <btgoodwin at geontech.com>
---
 builders.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/builders.py b/builders.py
index 16c1344..b57bed7 100644
--- a/builders.py
+++ b/builders.py
@@ -169,6 +169,7 @@ def create_builder_factory():
         name="Clobber build dir"))
     f.addStep(steps.Git(
         repourl=config.repos["yocto-autobuilder-helper"][0],
+        branch=config.repos["yocto-autobuilder-helper"][1],
         workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"),
         mode='incremental',
         haltOnFailure=True,
@@ -238,6 +239,7 @@ def create_parent_builder_factory(buildername, waitname):
     # check out the source
     factory.addStep(steps.Git(
         repourl=config.repos["yocto-autobuilder-helper"][0],
+        branch=config.repos["yocto-autobuilder-helper"][1],
         workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"),
         mode='incremental',
         haltOnFailure=True,
-- 
2.17.1



More information about the yocto mailing list