gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] branch master updated: buildbot: add git poller for g


From: gnunet
Subject: [taler-deployment] branch master updated: buildbot: add git poller for gnunet.git
Date: Thu, 24 Aug 2023 08:39:40 +0200

This is an automated email from the git hooks/post-receive script.

devan-carpenter pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 86b7c33  buildbot: add git poller for gnunet.git
86b7c33 is described below

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

    buildbot: add git poller for gnunet.git
---
 buildbot/master.cfg | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

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

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]