taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 86b7c334fb8b48089a4c09a872c17cae61ee3235
parent c59e2bac442e3e3ca1ad63cac595469e87b117ed
Author: Devan Carpenter <devan@taler.net>
Date:   Thu, 24 Aug 2023 02:38:38 -0400

buildbot: add git poller for gnunet.git

Diffstat:
Mbuildbot/master.cfg | 12+++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -35,6 +35,7 @@ import subprocess from buildbot.changes.pb import PBChangeSource from buildbot.steps.source.git import Git from buildbot.steps.shell import ShellCommand +from buildbot.plugins import changes from buildbot.plugins import reporters from buildbot.plugins import schedulers from buildbot.plugins import steps @@ -1524,7 +1525,16 @@ c["db"] = { # the 'change_source' setting tells the buildmaster how it should # find out about source code changes. -c["change_source"] = [PBChangeSource(user="allcs", passwd="allcs")] +pbSource = PBChangeSource(user="allcs", passwd="allcs") + + +pollGnunetSource = changes.GitPoller(repourl='https://git.gnunet.org/gnunet.git', + branches=True, + pollInterval=300, + pollAtLaunch=True, + project="gnunet") + +c["change_source"] = [pollGnunetSource, pbSource] # 'protocols' contains information about protocols which master # will use for communicating with workers. You must define at