[zorg] r374002 - [LLDB] Enable mails on the matrix bot
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 7 18:08:16 PDT 2019
Author: jdevlieghere
Date: Mon Oct 7 18:08:15 2019
New Revision: 374002
URL: http://llvm.org/viewvc/llvm-project?rev=374002&view=rev
Log:
[LLDB] Enable mails on the matrix bot
Modified:
zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
Modified: zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix?rev=374002&r1=374001&r2=374002&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix (original)
+++ zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix Mon Oct 7 18:08:15 2019
@@ -80,7 +80,6 @@ pipeline {
set -e
'''
}
- junit 'test/results.xml'
}
}
stage('Test DWARF4') {
@@ -104,7 +103,6 @@ pipeline {
set -e
'''
}
- junit 'test/results.xml'
}
}
stage('Test DWARF5') {
@@ -171,7 +169,6 @@ pipeline {
set -e
'''
}
- junit 'test/results.xml'
}
}
stage('Build Clang 7.0.1') {
@@ -215,7 +212,6 @@ pipeline {
set -e
'''
}
- junit 'test/results.xml'
}
}
stage('Build Clang 9.0.0') {
@@ -259,8 +255,22 @@ pipeline {
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'
+ }
+ }
}
More information about the llvm-commits
mailing list