summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorDevan Carpenter <devan@taler.net>2023-08-24 02:38:38 -0400
committerDevan Carpenter <devan@taler.net>2023-08-24 02:38:38 -0400
commit86b7c334fb8b48089a4c09a872c17cae61ee3235 (patch)
tree0f3a8156a54784d5c312925de9f6172315e51a88 /buildbot/master.cfg
parentc59e2bac442e3e3ca1ad63cac595469e87b117ed (diff)
downloaddeployment-86b7c334fb8b48089a4c09a872c17cae61ee3235.tar.gz
deployment-86b7c334fb8b48089a4c09a872c17cae61ee3235.tar.bz2
deployment-86b7c334fb8b48089a4c09a872c17cae61ee3235.zip
buildbot: add git poller for gnunet.git
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg12
1 files changed, 11 insertions, 1 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index b66395f..2658c67 100644
--- 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