[LLDB] Enable mails on the matrix bot

git-svn-id: https://llvm.org/svn/llvm-project/zorg/trunk@374002 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/zorg/jenkins/jobs/jobs/lldb-cmake-matrix b/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
index 211836c..e41e34d 100644
--- a/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
+++ b/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
@@ -80,7 +80,6 @@
                     set -e
                     '''
                 }
-                junit 'test/results.xml'
             }
         }
         stage('Test DWARF4') {
@@ -104,7 +103,6 @@
                     set -e
                     '''
                 }
-                junit 'test/results.xml'
             }
         }
         stage('Test DWARF5') {
@@ -171,7 +169,6 @@
                     set -e
                     '''
                 }
-                junit 'test/results.xml'
             }
         }
         stage('Build Clang 7.0.1') {
@@ -215,7 +212,6 @@
                     set -e
                     '''
                 }
-                junit 'test/results.xml'
             }
         }
         stage('Build Clang 9.0.0') {
@@ -259,8 +255,22 @@
                     set -e
                     '''
                 }
-                junit 'test/results.xml'
             }
         }
     }
+    post {
+        changed {
+            emailext subject: '$DEFAULT_SUBJECT',
+                    presendScript: '$DEFAULT_PRESEND_SCRIPT',
+                    postsendScript: '$DEFAULT_POSTSEND_SCRIPT',
+                    recipientProviders: [
+                            [$class: 'CulpritsRecipientProvider'],
+                            [$class: 'DevelopersRecipientProvider'],
+                            [$class: 'RequesterRecipientProvider'],
+                    ],
+                    replyTo: '$DEFAULT_REPLYTO',
+                    to: '$DEFAULT_RECIPIENTS',
+                    body:'$DEFAULT_CONTENT'
+        }
+    }
 }