summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2021-12-01 17:28:44 -0500
committerGitHub <noreply@github.com>2021-12-01 17:28:44 -0500
commita6d94f00e957459fef9f2960eb9265b9a7618991 (patch)
tree39230260383f26e05cce066a150778abb612c7a7
parentb6c32142d39d48441db5c5bcbb69a1b30a5e6e1c (diff)
parent214c8e7895ec42f2a14ba912e4f3b5e3fd28824e (diff)
downloadcouchdb-lostnet-moz/esr91pr.tar.gz
Merge branch 'main' into moz/esr91prlostnet-moz/esr91pr
-rw-r--r--build-aux/Jenkinsfile.full13
1 files changed, 6 insertions, 7 deletions
diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 144c18b39..20b8989a2 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -54,7 +54,6 @@ pipeline {
environment {
COUCHAUTH = credentials('couchdb_vm2_couchdb')
- recipient = 'notifications@couchdb.apache.org'
COUCHDB_IO_LOG_DIR = '/tmp/couchjslogs'
// Following fix an issue with git <= 2.6.5 where no committer
// name or email are present for reflog, required for git clone
@@ -754,20 +753,20 @@ pipeline {
post {
success {
- mail to: "${env.recipient}",
- replyTo: "${env.recipient}",
+ mail to: 'notifications@couchdb.apache.org',
+ replyTo: 'notifications@couchdb.apache.org',
subject: "[Jenkins] SUCCESS: ${currentBuild.fullDisplayName}",
body: "Yay, we passed. ${env.RUN_DISPLAY_URL}"
}
unstable {
- mail to: "${env.recipient}",
- replyTo: "${env.recipient}",
+ mail to: 'notifications@couchdb.apache.org',
+ replyTo: 'notifications@couchdb.apache.org',
subject: "[Jenkins] SUCCESS: ${currentBuild.fullDisplayName}",
body: "Eep! Build is unstable... ${env.RUN_DISPLAY_URL}"
}
failure {
- mail to: "${env.recipient}",
- replyTo: "${env.recipient}",
+ mail to: 'notifications@couchdb.apache.org',
+ replyTo: 'notifications@couchdb.apache.org',
subject: "[Jenkins] FAILURE: ${currentBuild.fullDisplayName}",
body: "Boo, we failed. ${env.RUN_DISPLAY_URL}"
}