From: Wilfried Göesgens Date: Tue, 22 Jun 2010 22:43:08 +0000 (+0000) Subject: * add irc bot X-Git-Tag: v7.86~136 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;ds=sidebyside;h=bc9c834cf94f458adf90cec405dba3f46f360388;p=citadel.git * add irc bot --- diff --git a/buildbot/master.cfg b/buildbot/master.cfg index 9ff8a684c..776f79784 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -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 + } + ))