summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorchristindbose <[email protected]>2023-05-10 15:02:00 -0400
committerchristindbose <[email protected]>2023-05-10 15:02:00 -0400
commit1c1e446a803cc7ae5fa3fe78c7212e63cd25c12e (patch)
treea19fbe2a05e7ebcbc0d10e6c853b540ae919e877 /Jenkinsfile
parentb98d7998283532e325cc7e35b5f3fc57040806b3 (diff)
parent0e83585519c0988df859aa58e0721d065fb82bf2 (diff)
Merge branch 'aerielvision_stuff' of https://github.com/christindbose/mgpu-gpgpu-sim_distribution into aerielvision_stuff
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}",
}
}