qy wechat notification plugin
1.0.0
該插件適用於使用"企業微信"工作的小伙伴,在Jenkins專案構建時使用群機器人進行狀態通知
需要不低於企業微信2.8.7版本
右键
群名稱的進行添加群機器人构建后操作
,新增企业微信通知配置
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', moreInfo:'额外的信息'
}
failure{
qyWechatNotification failNotify: true, mentionedId: '需要通知UserID', mentionedMobile: '需要通知的通知手机号码', webhookUrl: 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx-xxxxxx-xxxxxx', moreInfo:'额外的信息'
}
}
}
mvn org.jenkins-ci.tools:maven-hpi-plugin:run
打開Jenkins地址
http://127.0.0.1:8080/jenkins
項目DEBUG
set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
專案打包
mvn package
需要更多的支持請透過下方地址留言
https://itwake.blog.csdn.net/article/details/122043499