diff options
| author | tgrogers <[email protected]> | 2017-07-19 16:07:45 -0400 |
|---|---|---|
| committer | tgrogers <[email protected]> | 2017-07-19 16:07:45 -0400 |
| commit | 744b2f50c86d1149d887645af1b4a2e16360a270 (patch) | |
| tree | 35b32b8168e0f7bf182857a1d4aaa258fd8460ff | |
| parent | 2fc555094a7ba90540de7d02543a66909d84d126 (diff) | |
inside step?
| -rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index a510f40..1f6ed5f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { ./util/job_launching/monitor_func_test.py -v -N regress' - def to = emailextrecipients([ + step(def to = emailextrecipients([ [$class: 'CulpritsRecipientProvider'], [$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider'] @@ -27,7 +27,7 @@ pipeline { if(to != null && !to.isEmpty()) { mail to: to, subject: "[AALP Jenkins] Build ${currentBuild.result}!", body: "See ${env.BUILD_URL}" - } + }) } } } |
