diff options
| author | tgrogers <[email protected]> | 2017-07-19 14:04:35 -0400 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2017-07-19 14:04:35 -0400 |
| commit | 6726b3fc7a10be5ed3af4d99110634638e4ca61c (patch) | |
| tree | b5928e2cac41d020bd396120a47287286dca8aa8 | |
| parent | e71aaaba5201e48790aa63df4dc2aa1de2fffda1 (diff) | |
Adding in auto-email stuff
| -rw-r--r-- | Jenkinsfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 453cce4..7075601 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,19 @@ pipeline { make -j -C ./benchmarks/src all && \ ./util/job_launching/run_simulations.py -N regress && \ ./util/job_launching/monitor_func_test.py -v -N regress' + + emailex + body: '''$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS: + Check console output at $BUILD_URL to view the results.''', + recipientProviders: [[$class: 'CulpritsRecipientProvider'], + [$class: 'RequesterRecipientProvider']], + replyTo: '[email protected]', + subject: '[AALP Jenkins]: $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!', + to: '[email protected]' } } } + + + } |
