Jenkins中配置邮件通知实例演示

前言:本文经过安装配置Jenkins实现邮件通知,告知一个C# Git Repo的build成功与否

1、预配条件

  1. 在windows上安装Jenkins和它推荐安装的Plugins
  2. 建立一个@163.com邮箱帐号,用来发送邮件
  3. 准备一个测试用的git repo,此处我提供了 https://github.com/wenboyang214/jenkinsCsharpTest.git
  4. 运行下列脚本,Jenkins须要设置git、msbuild等的环境变量,请自行设置

2、对邮箱帐号自己进行设置(此处以163邮箱为例)

Note: Jenkins中配置的邮箱secret须要受权码,而不是密码自己。所以咱们须要获取受权码。html

3、配置Jenkins 的系统参数

你须要作以下截图的配置git

1.最好更改一下Jenkins的Workspace Root Directory,避免符号的一些错误

2.设置Jenkins的System Admin e-mail address,此处的邮箱要和你email notification的邮箱一致

3.在Extended E-mail Notification中进行以下设置,没设置的地方,保持默认

4、测试邮箱提醒功能

1.简单建立一个新的Pipeline item 名称为”test”

2.将下列脚本copy到Pipeline script中

#!/usr/bin/env groovy Jenkinsfile
pipeline {
    agent any
    environment {
        def gitRepo="https://github.com/wenboyang214/jenkinsCsharpTest.git"
        def mailRecipients="wenbya@163.com"
    }
    stages {
        stage('1. check the git repo'){
        steps{
                git "${gitRepo}" 
            }
         }
        stage('3. msbuild the project'){
            steps{
                bat "msbuild .\\JenkinsTest\\JenkinsTest.sln"
            }
        }
    }
    post {
        always {
            echo 'testing email notification'
        }
        success {
            echo 'This will run only if successful'
            emailext( 
                body: '''${SCRIPT, template="groovy-html.template"}''',
                mimeType: 'text/html',
                subject: "[Jenkins]${currentBuild.fullDisplayName}",
                to: "${mailRecipients}",
                replyTo: "${mailRecipients}",
                recipientProviders: [[$class: 'CulpritsRecipientProvider'],[$class: 'DevelopersRecipientProvider']]
            )
        }
        failure {
            echo 'This will run only if failed'
            emailext( body: '''${SCRIPT, template="groovy-html.template"}''',
                mimeType: 'text/html',
                subject: "[Jenkins]${currentBuild.fullDisplayName}",
                to: "${mailRecipients}",
                replyTo: "${mailRecipients}",
                recipientProviders: [[$class: 'CulpritsRecipientProvider'],[$class: 'DevelopersRecipientProvider']]
            )
        }
        unstable {
            echo 'This will run only if the run was marked as unstable'
        }
        changed {
            echo 'This will run only if the state of the Pipeline has changed'
            echo 'For example, if the Pipeline was previously failing but is now successful'
        }
    }
}

而后直接启动这个test itemgithub

5、进行对错改动,并检查邮箱是否收到邮件

更改msbuild的路径,故意让其build出错,检查是否能收到报错邮件。windows

bat “msbuild .\JenkinsTest\JenkinsTest.sln” => bat “msbuild .\JenkinsTest1\JenkinsTest.sln”

相关文章
相关标签/搜索