gpt4 book ai didi

jenkins - 如何在Jenkins管道中将构建完成后的通知发送给多个收件人

转载 作者:行者123 更新时间:2023-12-04 13:25:44 25 4
gpt4 key购买 nike

我正在设置一个Jenkins管道,我想在其中将构建后的通知发送给多个收货人。我无法找到如何设置“CC”,有人可以帮忙吗?

我的管道示例如下:

pipeline {
agent any
stages {
stage('No-op') {
steps {
sh 'ls'
}
}
}
post {
failure {
mail to: 'team@example.com',
subject: "Failed Pipeline: ${currentBuild.fullDisplayName}",
body: "Something is wrong with ${env.BUILD_URL}"
}
}

}

上面的示例对我来说工作正常,但我想修改以下行以将通知发送给多个人(最好在CC中):
mail to: 'team@example.com',

我正在使用Jenkins ver。 2.41

最佳答案

我不知道您是否可以抄送它们,但是要发送给多个收件人,请尝试使用逗号分隔的列表:

mail to: 'team@example.com,blah@example.com',

关于jenkins - 如何在Jenkins管道中将构建完成后的通知发送给多个收件人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45823129/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com