jenkins的Pipeline如何配置企业微信通知

601次阅读
没有评论

共计 559 个字符,预计需要花费 2 分钟才能阅读完成。

我们部署了 jenkins 的 Pipeline 的打包方式,通知需要使用企业微信。
参考官方
https://github.com/jenkinsci/qy-wechat-notification-plugin

pipeline {
    agent any

    stages {stage('Hello') {
            steps {echo 'Hello World'}
        }
    }
    post{
        success{qyWechatNotification failNotify: true, mentionedId: '需要通知 UserID', mentionedMobile: '需要通知的通知手机号码', webhookUrl: 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx-xxxxxx-xxxxxx'}
        failure{qyWechatNotification failNotify: true, mentionedId: '需要通知 UserID', mentionedMobile: '需要通知的通知手机号码', webhookUrl: 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx-xxxxxx-xxxxxx'}
    }

我的是 k8s 的部署方式
打包配置如下
2022-07-18T10:03:08.png

通知结果如下
jenkins 的 Pipeline 如何配置企业微信通知

正文完
 0
yx
版权声明:本站原创文章,由 yx 于2022-07-18发表,共计559字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码