[zorg] r214997 - Make sure the LNT bots do not cause too much noise
Tobias Grosser
tobias at grosser.es
Wed Aug 6 14:56:19 PDT 2014
Author: grosser
Date: Wed Aug 6 16:56:16 2014
New Revision: 214997
URL: http://llvm.org/viewvc/llvm-project?rev=214997&view=rev
Log:
Make sure the LNT bots do not cause too much noise
We want them to only report to me until we made sure the loise ratio is
low enough.
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=214997&r1=214996&r2=214997&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/status.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/status.py Wed Aug 6 16:56:16 2014
@@ -30,12 +30,12 @@ def get_status_targets(standard_builders
default_email = config.options.get('Master Options', 'default_email')
- # The polly performance buildbots have a very long delay and commonly fail
+ # The LNT performance buildbots have a very long delay and commonly fail
# late and if they fail, all of them fail together. As the same failures
- # are are normally also catched by the faster polly bots, there is no need
+ # are are normally also catched by the faster non-LNT bots, there is no need
# to warn everybody about failures in the performance bots. Tobias Grosser
# will keep track of such.
- standard_builders = [b for b in standard_builders if not b.startswith('polly-perf')]
+ standard_builders = [b for b in standard_builders if not b.startswith('perf-x86_64')]
return [
buildbot.status.html.WebStatus(
More information about the llvm-commits
mailing list