Jenkins pipeline 使用 邮件扩展发送邮件
一. 在使用 jenkins 邮件拓展的过程中,邮件内容的变量找了好久,现把总结内容整理如下;pipeline{agent{label'master'}environment{gitpullerr='noerr'sendmail='no'git_url='git@19...
·
一. 在使用 jenkins 邮件拓展的过程中,邮件内容的变量找了好久,现把总结内容整理如下;
pipeline{
agent{label 'master'}
environment {
gitpullerr = 'noerr'
sendmail = 'no'
git_url = 'git@192.168.8.110:/git/reps/pipeline.git'
git_key = '50e27d86-37e0-4a5b-82db-4ea5ea9492bf'
git_branch = 'dev'
}
triggers { pollSCM('* * * * *') }
stages {
stage('Get Code') {
steps {
checkout([$class: 'GitSCM', branches: [[name: ${git_branch}]], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: ${git_key}, url: ${git_url}]]])
}
}
stage('kkk'){
steps {
script {
try {
echo "${sdsdas}"
}catch(exc) {
gitpullerr = 'err' ;
//throw exc
}
}
echo "$gitpullerr"
}
}
stage('checkpullvalue'){
when {
//environment name: 'gitpullerr', value: 'err'
branch 'dev'
}
steps{
echo "value: $gitpullerr,print "
}
}
}
post{
success {
script {
if (sendmail == 'yes') {
emailext body: '''<body leftmargin="8" marginwidth="0" topmargin="8" marginheight="4"
offset="0">
<table width="95%" cellpadding="0" cellspacing="0"
style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif">
<tr>
<td><br />
<b><font color="#0B610B">构建信息</font></b>
<hr size="2" width="100%" align="center" /></td>
</tr>
<tr>
<td>
<ul>
<li>构建名称:${JOB_NAME}</li>
<li>构建结果: <span style="color:green"> ${BUILD_STATUS}</span></li>
<li>构建编号:${BUILD_NUMBER} </li>
<li>GIT 地址:${git_url}</li>
<li>GIT 分支:${git_branch}</li>
<li>变更记录: ${CHANGES,showPaths=true,showDependencies=true,format="<pre><ul><li>提交ID: %r</li><li>提交人:%a</li><li>提交时间:%d</li><li>提交信息:%m</li><li>提交文件:<br />%p</li></ul></pre>",pathFormat=" %p <br />"}
</ul>
</td>
</tr>
</table>
</body>
</html>
''', subject: '${PROJECT_NAME}', to: 'aaa@163.com,'
}
}
}
failure {
script {
if (gitpullerr == 'noerr') {
emailext body: '''<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body leftmargin="8" marginwidth="0" topmargin="8" marginheight="4"
offset="0">
<table width="95%" cellpadding="0" cellspacing="0"
style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif">
<tr>
<td><br />
<b><font color="#0B610B">构建信息</font></b>
<hr size="2" width="100%" align="center" /></td>
</tr>
<tr>
<td>
<ul>
<li>构建名称:${JOB_NAME}</li>
<li>构建结果: <span style="color:red"> ${BUILD_STATUS}</span></li>
<li>构建编号:${BUILD_NUMBER} </li>
<li>GIT 地址:${git_url}</li>
<li>GIT 分支:${git_branch}</li>
<li>变更记录: ${CHANGES,showPaths=true,showDependencies=true,format="<pre><ul><li>提交ID: %r</li><li>提交人:%a</li><li>提交时间:%d</li><li>提交信息:%m</li><li>提交文件:%p</li></ul></pre>",pathFormat="%p <br />"}
</ul>
</td>
</tr>
<tr>
<td><b><font color="#0B610B">构建日志 :</font></b>
<hr size="2" width="100%" align="center" /></td>
</tr>
<tr>
<td><textarea cols="150" rows="30" readonly="readonly"
style="font-family: Courier New">${BUILD_LOG}</textarea>
</td>
</tr>
</table>
</body>
</html>
''', subject: '${PROJECT_NAME}', to: 'aaa@sina.com'
}else {
echo 'scm pull error ignore send mail'
}
}
}
}
}
转载于:https://blog.51cto.com/5766902/2317533
更多推荐



所有评论(0)