aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Segundo2024-07-08 16:32:48 +0200
committerChristian Segundo2024-07-08 16:32:48 +0200
commitb5c2e5db789092a71fc186ab128fbaac16b40946 (patch)
tree5ea87ec6b19d0964b5fb1cfe550382b40115a169
parentaa7dec07b489dd532e5294e1e3fe59bd6d5bee92 (diff)
downloadnvim-b5c2e5db789092a71fc186ab128fbaac16b40946.tar.gz
send notifications on failed builds
-rw-r--r--Jenkinsfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 861d020..93759cf 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -26,4 +26,12 @@ pipeline {
}
}
}
+ post {
+ always {
+ step([$class: 'Mailer',
+ notifyEveryUnstableBuild: true,
+ recipients: "christian+jenkins@segundo.io",
+ sendToIndividuals: true])
+ }
+ }
}