summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorJRPan <[email protected]>2023-05-10 15:38:10 -0400
committerGitHub <[email protected]>2023-05-10 15:38:10 -0400
commit918fe2ce65260ae29e2dab0bf8236cbdf4c817f0 (patch)
tree983fbd1e0d6056413844960c8338c7019225b3e0 /Jenkinsfile
parentcb6060a60fd38102dd222f4f1a531c8f4c725d2b (diff)
parent948c0e1a0e379e37e60c83b9ab622217522aea86 (diff)
Merge branch 'dev' into cache_reserve_SEGF
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index a3db3e5..f6676bf 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -90,20 +90,17 @@ pipeline {
}
post {
success {
-// sh 'git remote rm upstream'
- emailext body:'''${SCRIPT, template="groovy-html.success.template"}''',
+ emailext body: "See ${BUILD_URL}.",
recipientProviders: [[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']],
- subject: "[AALP Jenkins] Build #${BUILD_NUMBER} - Success!",
- attachmentsPattern: 'correl.*.txt',
+ subject: "[AALP Jenkins] Build ${JOB_NAME} #${BUILD_NUMBER} - Success!",
}
failure {
-// sh 'git remote rm upstream'
emailext body: "See ${BUILD_URL}",
recipientProviders: [[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']],
- subject: "[AALP Jenkins] Build #${BUILD_NUMBER} - ${currentBuild.result}",
+ subject: "[AALP Jenkins] Build ${JOB_NAME} #${BUILD_NUMBER} - ${currentBuild.result}",
}
}