[zorg] r181232 - Add an additional mail notifier for libcxx to send emails to Howard like we did when we had said builder on smooshlab.

Michael Gottesman mgottesman at apple.com
Mon May 6 11:26:16 PDT 2013


Author: mgottesman
Date: Mon May  6 13:26:15 2013
New Revision: 181232

URL: http://llvm.org/viewvc/llvm-project?rev=181232&view=rev
Log:
Add an additional mail notifier for libcxx to send emails to Howard like we did when we had said builder on smooshlab.

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=181232&r1=181231&r2=181232&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/status.py (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/status.py Mon May  6 13:26:15 2013
@@ -101,5 +101,16 @@ def get_status_targets(standard_builders
             sendToInterestedUsers = False,
             extraRecipients = ['llvm-testresults at cs.uiuc.edu'],
             mode = 'change',
-            categories = ['status']),]
-
+            categories = ['status']),
+        
+        # Send email to Howard Hinnant if the libcxx builder fails.
+        InformativeMailNotifier(
+            fromaddr = from_email,
+            sendToInterestedUsers = False,
+            extraRecipients = ['hhinnant at apple.com'],
+            subject = "Build %(builder)s Failure",
+            mode = "failing",
+            builders = ['libcxx_clang-x86_64-darwin11-RA'],
+            addLogs = False,
+            num_lines = 15),
+        ]





More information about the llvm-commits mailing list