X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=buildbot%2Fmaster.cfg;h=776f79784c89e03ac27dbf0699f5e716e4717703;hp=9ff8a684c542066de21f398092cad70c5773a4d3;hb=1e05f422343597adb7b3a6b32f6c538ffbff8314;hpb=add8373d3d0778fa3dd5fcee881f49f4ad452bc6 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 + } + ))