[zorg] r371140 - [lldb] Send e-mails on failure

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 5 16:03:42 PDT 2019


Author: jdevlieghere
Date: Thu Sep  5 16:03:41 2019
New Revision: 371140

URL: http://llvm.org/viewvc/llvm-project?rev=371140&view=rev
Log:
[lldb] Send e-mails on failure

This was disabled because of a bug in our template, which should be
fixed now.

Modified:
    zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake

Modified: zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake?rev=371140&r1=371139&r2=371140&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake (original)
+++ zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake Thu Sep  5 16:03:41 2019
@@ -81,5 +81,19 @@ pipeline {
             scanForIssues tool: clang()
             junit 'test/results.xml'
         }
+        failure {
+            emailext
+            subject: '$DEFAULT_SUBJECT',
+            presendScript: '$DEFAULT_PRESEND_SCRIPT',
+            postsendScript: '$DEFAULT_POSTSEND_SCRIPT',
+            recipientProviders: [
+                    [$class: 'CulpritsRecipientProvider'],
+                    [$class: 'DevelopersRecipientProvider'],
+                    [$class: 'RequesterRecipientProvider'],
+            ],
+            replyTo: '$DEFAULT_REPLYTO',
+            to: 'jdevlieghere at apple.com', // $DEFAULT_RECIPIENTS
+            body:'$DEFAULT_CONTENT'
+        }
     }
 }




More information about the llvm-commits mailing list