jenkins管道脚本,用于向最终提交的开发人员生成报告,我无法使用抄送邮件

时间:2018-10-12 09:59:11

标签: linux jenkins jenkins-pipeline pipeline devops

我试图将构建报告成功/失败发送给最后提交的开发人员。 下面是我可以将邮件发送给开发人员的脚本,但是Cc无法正常工作。我也想在邮件中添加主题。请帮我。

这是在詹金斯管道脚本中失败的步骤。

step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'krugus@company.com', sendToIndividuals: true])

完整脚本-

try {                                                                        
echo "${LAST_COMMITER_EMAIL}, anidf@company.com"
    currentBuild.result = 'SUCCESS'
} catch (any) {
currentBuild.result = 'FAILURE'
throw any //rethrow exception to prevent the build from proceeding
} finally {
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 
'kargus@company.com', sendToIndividuals: true])
}  

0 个答案:

没有答案