[zorg] r232746 - Move the sphinx build bots into standard_builders.

Dan Liew dan at su-root.co.uk
Thu Mar 19 11:33:38 PDT 2015


Author: delcypher
Date: Thu Mar 19 13:33:38 2015
New Revision: 232746

URL: http://llvm.org/viewvc/llvm-project?rev=232746&view=rev
Log:
Move the sphinx build bots into standard_builders.

Now the sphinx build bots will be treated like the others
so devs will now be notified if they break the sphinx builds.

Before the sphinx build bots were only notifying Sean Silva and myself.
This was so we could evaluate whether or not the bots would be too
noisy. They don't seem to be particularly noisy so it makes sense to
just have everyone notified when build failures occur.

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=232746&r1=232745&r2=232746&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/status.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/status.py Thu Mar 19 13:33:38 2015
@@ -37,10 +37,6 @@ def get_status_targets(standard_builders
     # will keep track of such.
     standard_builders = [b for b in standard_builders if not b.startswith('perf-x86_64')]
 
-    # The sphinx buildbots are currently experimental so we don't
-    # want to notify everyone about build failures
-    standard_builders = [b for b in standard_builders if not b.endswith('-sphinx-docs')]
-
     return [
         buildbot.status.html.WebStatus(
             http_port = 8011, authz=authz_cfg),
@@ -117,16 +113,4 @@ def get_status_targets(standard_builders
             builders = ["llvm-s390x-linux1"],
             addLogs=False,
             num_lines = 15),
-        InformativeMailNotifier(
-            fromaddr = "llvm.buildmaster at lab.llvm.org",
-            sendToInterestedUsers= False,
-            extraRecipients = ["dan at su-root.co.uk", "chisophugis at gmail.com"],
-            subject="Build %(builder)s Failure",
-            mode = "failing",
-            builders = ["llvm-sphinx-docs",
-                        "clang-sphinx-docs",
-                        "lld-sphinx-docs"
-                       ],
-            addLogs=False,
-            num_lines = 15),
         ]





More information about the llvm-commits mailing list