From 345e493c3bc1cecfed755d4507cb4873c8b3addb Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Mon, 18 May 2020 01:51:47 +0200 Subject: [PATCH] handle git submodules --- templates/buildbot/master.cfg.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/buildbot/master.cfg.j2 b/templates/buildbot/master.cfg.j2 index 9d52d9d..a21c6d4 100644 --- a/templates/buildbot/master.cfg.j2 +++ b/templates/buildbot/master.cfg.j2 @@ -117,6 +117,7 @@ for builders_config_file_path in builders_config_file_paths: branch=repo["branch"], workdir=repo['workdir'], progress=True, + submodules=True, )) elif repo['type'] == 'gitea': factory.addStep(steps.Gitea( @@ -125,6 +126,7 @@ for builders_config_file_path in builders_config_file_paths: branch=repo["branch"], workdir=repo['workdir'], progress=True, + submodules=True, )) for cmd in builder_config['shell_commands']: