|
|
@ -49,4 +49,48 @@ docker push ${harborHost}/${harborRepo}/${JOB_NAME}:$tag'''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// https://oapi.dingtalk.com/robot/send?access_token=5f5b130a0e9904359b3c1c21760d5cbf6802e387d52bacdf873fac531e731bba
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
post {
|
|
|
|
|
|
|
|
success {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dingtalk(
|
|
|
|
|
|
|
|
robot: 'jenkins-dingding',
|
|
|
|
|
|
|
|
type: 'MARKDOWN',
|
|
|
|
|
|
|
|
at: [],
|
|
|
|
|
|
|
|
atAll: false,
|
|
|
|
|
|
|
|
title: 'success: ${JOB_NAME}',
|
|
|
|
|
|
|
|
text: ["- 成功构建: ${JOB_NAME}! \n - 版本: ${tag} \n - 持续时间: ${currentBuild.durationString}"],
|
|
|
|
|
|
|
|
messageUrl: '',
|
|
|
|
|
|
|
|
picUrl: '',
|
|
|
|
|
|
|
|
singleTitle: '',
|
|
|
|
|
|
|
|
btns: [],
|
|
|
|
|
|
|
|
btnLayout: '',
|
|
|
|
|
|
|
|
hideAvatar: false
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
failure {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dingtalk(
|
|
|
|
|
|
|
|
robot: 'jenkins-dingding',
|
|
|
|
|
|
|
|
type: 'MARKDOWN',
|
|
|
|
|
|
|
|
at: [],
|
|
|
|
|
|
|
|
atAll: false,
|
|
|
|
|
|
|
|
title: 'fail: ${JOB_NAME}',
|
|
|
|
|
|
|
|
text: ["- 失败构建: ${JOB_NAME}! \n - 版本: ${tag} \n - 持续时间: ${currentBuild.durationString}"],
|
|
|
|
|
|
|
|
messageUrl: '',
|
|
|
|
|
|
|
|
picUrl: '',
|
|
|
|
|
|
|
|
singleTitle: '',
|
|
|
|
|
|
|
|
btns: [],
|
|
|
|
|
|
|
|
btnLayout: '',
|
|
|
|
|
|
|
|
hideAvatar: false
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|