diff --git a/templates/buildbot/master.cfg.j2 b/templates/buildbot/master.cfg.j2 index 04a0058..cab102f 100644 --- a/templates/buildbot/master.cfg.j2 +++ b/templates/buildbot/master.cfg.j2 @@ -57,7 +57,9 @@ c['schedulers'].append(schedulers.ForceScheduler( # only take place on one worker. factory = util.BuildFactory() -factory.addStep(steps.GitHub(repourl='https://github.com/covid-videoplattform/covid-videoplattform.git', mode='incremental')) +{% for repo in buildbot_github_repos %} +factory.addStep(steps.GitHub(name='{{repo.name}}',repourl='{{repo.repourl}}', mode='incremental',workdir='{{repo.workdir}}', alwaysUseLatest=True)) +{% endfor %} #factory.addStep(steps.ShellCommand(command=["trial", "hello"], # env={"PYTHONPATH": "."}))