浏览代码

Fix Email notifications

Rob Winch 5 年之前
父节点
当前提交
7cc10ed277
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      Jenkinsfile

+ 6 - 6
Jenkinsfile

@@ -227,12 +227,12 @@ try {
 				def subject = "${buildStatus}: Build ${env.JOB_NAME} ${env.BUILD_NUMBER} status is now ${buildStatus}"
 				def details = """The build status changed to ${buildStatus}. For details see ${env.BUILD_URL}"""
 
-// 				emailext (
-// 					subject: subject,
-// 					body: details,
-// 					recipientProviders: RECIPIENTS,
-// 					to: "$SPRING_SECURITY_TEAM_EMAILS"
-// 				)
+ 				emailext (
+ 					subject: subject,
+ 					body: details,
+ 					recipientProviders: RECIPIENTS,
+ 					to: "$SPRING_SECURITY_TEAM_EMAILS"
+ 				)
 			}
 		}
 	}