summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authortgrogers <[email protected]>2017-07-19 14:04:35 -0400
committertgrogers <[email protected]>2017-07-19 14:04:35 -0400
commit6726b3fc7a10be5ed3af4d99110634638e4ca61c (patch)
treeb5928e2cac41d020bd396120a47287286dca8aa8 /Jenkinsfile
parente71aaaba5201e48790aa63df4dc2aa1de2fffda1 (diff)
Adding in auto-email stuff
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile12
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!',
}
}
}
+
+
+
}