[zorg] r294780 - Add "#llvm-build" IRC channel: An alternative place for bots to squawk.
Eric Fiselier via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 10 12:56:56 PST 2017
Author: ericwf
Date: Fri Feb 10 14:56:56 2017
New Revision: 294780
URL: http://llvm.org/viewvc/llvm-project?rev=294780&view=rev
Log:
Add "#llvm-build" IRC channel: An alternative place for bots to squawk.
The #llvm IRC channel is flooded with buildbot warnings. So much so that
actual human conversation is drowned out. The obvious option is to ignore the
buildbots; but they provide useful notifications that developers might want
to receive. The solution is simply to receive them elsewhere.
This patch tells the bots to also report changes in `#llvm-build`, allowing
users to silence the versions in `#llvm`.
Modified:
zorg/trunk/buildbot/osuosl/master/config/status.py
Modified: zorg/trunk/buildbot/osuosl/master/config/status.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/status.py?rev=294780&r1=294779&r2=294780&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/status.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/status.py Fri Feb 10 14:56:56 2017
@@ -43,7 +43,8 @@ def get_status_targets(standard_builders
mode = "problem",
builders = standard_builders),
buildbot.status.words.IRC(
- host = "irc.oftc.net", nick = "llvmbb", channels = ["#llvm"],
+ host = "irc.oftc.net", nick = "llvmbb",
+ channels = ["#llvm", "#llvm-build"],
allowForce = True,
categories = standard_categories,
notify_events = ['successToFailure', 'failureToSuccess']),
More information about the llvm-commits
mailing list