-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
119 lines (113 loc) · 3.09 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
pipeline {
agent any
environment {
GOPROXY = 'https://goproxy.cn,direct'
RUN_BY_GITHUB_ACTION = "true"
}
tools {
go 'go'
}
stages {
stage('Clone') {
steps {
git(url: scm.userRemoteConfigs[0].url, branch: '$BRANCH_NAME', changelog: true, credentialsId: 'KK-github-key', poll: true)
}
}
stage('Prepare') {
steps {
sh 'rm -rf ./output/*'
sh 'make deps'
}
}
stage('Linting') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make verify'
}
}
stage('Compile') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make verify-build'
}
}
stage('Unit Tests') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make test'
}
}
stage('Post') {
steps {
// Assemble vet and lint info.
// warnings parserConfigurations: [
// [pattern: 'govet.txt', parserName: 'Go Vet'],
// [pattern: 'golint.txt', parserName: 'Go Lint']
// ]
// sh 'go2xunit -fail -input gotest.txt -output gotest.xml'
// junit "gotest.xml"
sh 'echo Posting'
}
}
}
post('Report') {
fixed {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh fixed')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/success_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
success {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh successful')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/success_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
failure {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh failure')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/fail_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
aborted {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh aborted')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/fail_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
}
}