[zorg] r176395 - Added IRC functionality to phased builders. This should give more visibility when one of them breaks.
Michael Gottesman
mgottesman at apple.com
Fri Mar 1 16:56:04 PST 2013
Author: mgottesman
Date: Fri Mar 1 18:56:04 2013
New Revision: 176395
URL: http://llvm.org/viewvc/llvm-project?rev=176395&view=rev
Log:
Added IRC functionality to phased builders. This should give more visibility when one of them breaks.
Modified:
zorg/trunk/buildbot/llvmlab/master/config/status.py
Modified: zorg/trunk/buildbot/llvmlab/master/config/status.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/llvmlab/master/config/status.py?rev=176395&r1=176394&r2=176395&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/status.py (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/status.py Fri Mar 1 18:56:04 2013
@@ -27,7 +27,15 @@ def get_status_targets(standard_builders
sendToInterestedUsers = False,
mode = 'change',
addLogs = False,
- num_lines = 15)]
+ num_lines = 15),
+ buildbot.status.words.IRC('irc.oftc.net', 'llvmlab',
+ port=6668,
+ channels=['llvm'],
+ allowForce=False,
+ password='smooshy',
+ notify_events=['successToFailure', 'failureToSuccess'],
+ categories=['build', 'test']),
+ ]
# Get the path to the authors file we use for email lookup.
llvm_authors_path = os.path.join(os.path.dirname(__file__),
More information about the llvm-commits
mailing list