qy wechat notification plugin
1.0.0
이 플러그인은 "Enterprise WeChat"에서 작업하고 Jenkins 프로젝트를 구축할 때 상태 알림을 위해 그룹 로봇을 사용하는 파트너에게 적합합니다.
Enterprise WeChat 버전 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
프로젝트 디버그
set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
프로젝트 패키징
mvn package
더 많은 지원이 필요하시면 아래 주소로 메시지를 남겨주세요
https://itwake.blog.csdn.net/article/details/122043499