commit 44c7f18c541f6294d3a2052e570c3966c794cfd4
parent 3d8adea66c3e7325cd5ea6c6673f2cecaa13f6e8
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 15 Jan 2025 13:48:59 +0100
-fix sourcing
Diffstat:
1 file changed, 12 insertions(+), 10 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -732,15 +732,17 @@ c["db"] = {
# the 'change_source' setting tells the buildmaster how it should
# find out about source code changes.
-pbSource = PBChangeSource(user="allcs", passwd="allcs")
-
-
-pollGnunetSource = changes.GitPoller(repourl='https://git.gnunet.org/gnunet.git',
- branches=True,
- pollInterval=300,
- pollAtLaunch=True,
- project="gnunet")
-
+pbSource
+ = changes.PBChangeSource(port=19990,
+ user="git-buildbot",
+ passwd="Aer3eari")
+
+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
@@ -748,7 +750,7 @@ c["change_source"] = [pollGnunetSource, pbSource]
# least 'port' option that workers could connect to your master
# with this protocol. 'port' must match the value configured into
# the workers (with their --master option)
-c["protocols"] = {"pb": {"port": "tcp:9988:interface=127.0.0.1"}}
+c["protocols"] = {"pb": {"port": "tcp:19989:interface=127.0.0.1"}}
# We use nginx to expose the BB under this URL.
c["buildbotURL"] = "https://buildbot.taler.net/"