Changed the year in the copyright banner(s) to 2019.
[citadel.git] / buildbot / master.cfg
index 9ff8a684c542066de21f398092cad70c5773a4d3..776f79784c89e03ac27dbf0699f5e716e4717703 100644 (file)
@@ -345,4 +345,19 @@ c['projectURL'] = "http://www.citadel.org/"
 # with an externally-visible host name which the buildbot cannot figure out
 # without some help.
 
-c['buildbotURL'] = "http://192.168.3.2:8010/"
+c['buildbotURL'] = "http://dothebart.dyndns.org/buildbot/"
+
+from buildbot.status import words
+c['status'].append(
+    words.IRC(
+        host="irc.freenode.net", 
+        nick="bb-citadel",
+        channels=["#citadel"],
+        password="mysecretpassword",
+        notify_events={
+            'exception': 1,
+            'successToFailure': 1,
+            'failureToSuccess': 1
+            }
+        ))