-
Notifications
You must be signed in to change notification settings - Fork 3
/
Jenkinsfile
451 lines (414 loc) · 12.6 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
pipeline {
agent any
environment {
GOPROXY = 'https://goproxy.cn,direct'
// env info from hack/set-golang-env.sh
GOVERSION = "go1.19.13"
GOTMPENV = "/opt/.golang/$GOVERSION"
GOROOT = "$GOTMPENV/goroot"
GOPATH = "$GOTMPENV/gopath"
GOBIN = "$GOROOT/bin"
PATH = "$PATH:$GOBIN"
GO111MODULE = "on"
}
stages {
stage('Clone') {
steps {
sh(returnStdout: true, script: '''
git tag -l | xargs git tag -d
git fetch origin --prune
echo "update tags for repo"
'''.stripIndent())
git(url: scm.userRemoteConfigs[0].url,credentialsId: 'KK-github-key', branch: '$BRANCH_NAME', changelog: true, poll: true)
}
}
stage('Prepare Golang ENV') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make prepare-golang-env'
}
}
stage('Prepare') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make deps'
}
}
stage('Linting') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make verify'
}
}
stage('Compile') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh (returnStdout: false, script: '''
TAG=latest make build
'''.stripIndent())
}
}
// TODO: support UT
stage('Unit Tests') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh (returnStdout: false, script: '''
echo "TODO:will make it ok"
'''.stripIndent())
}
}
stage('Generate docker image for dev') {
when {
expression { BUILD_TARGET == 'true' }
expression { BRANCH_NAME == 'master' }
}
steps {
sh 'TAG=latest DOCKER_REGISTRY=$DOCKER_REGISTRY make build-docker'
}
}
stage('Release docker image for dev') {
when {
expression { RELEASE_TARGET == 'true' }
expression { BRANCH_NAME == 'master' }
}
steps {
sh 'TAG=latest DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker'
}
}
stage('Generate docker image for feature') {
when {
expression { BUILD_TARGET == 'true' }
expression { BRANCH_NAME != 'master' }
}
steps {
sh 'make verify-build'
sh(returnStdout: false, script: '''
feature_name=`echo $BRANCH_NAME | awk -F '/' '{ print $2 }'`
TAG=$feature_name DOCKER_REGISTRY=$DOCKER_REGISTRY make build-docker
'''.stripIndent())
}
}
stage('Release docker image for feature') {
when {
expression { RELEASE_TARGET == 'true' }
expression { BRANCH_NAME != 'master' }
}
steps {
sh(returnStdout: false, script: '''
feature_name=`echo $BRANCH_NAME | awk -F '/' '{ print $2 }'`
TAG=$feature_name DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker
'''.stripIndent())
}
}
stage('Tag') {
when {
anyOf{
expression { TAG_MAJOR == 'true' }
expression { TAG_MINOR == 'true' }
expression { TAG_PATCH == 'true' }
}
anyOf{
expression { TAG_FOR == 'testing' }
expression { TAG_FOR == 'production' }
}
}
steps {
sh(returnStdout: true, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
major=0
minor=0
patch=-1
if [ "$TAG_FOR" == 'testing' ]; then
patch=0
fi
if [ 0 -eq $rc ]; then
tag=`git describe --tags $revlist`
major=`echo $tag | awk -F '.' '{ print $1 }'`
minor=`echo $tag | awk -F '.' '{ print $2 }'`
patch=`echo $tag | awk -F '.' '{ print $3 }'`
fi
if [ "$TAG_MAJOR" == 'true' ]; then
major=$(( $major + 1 ))
minor=0
elif [ "$TAG_MINOR" == 'true' ]; then
minor=$(( $minor + 1 ))
fi
case $TAG_FOR in
testing)
patch=$(( $patch + $patch % 2 + 1 ))
;;
production)
patch=$(( $patch + ( $patch + 1 ) % 2 + 1 ))
git reset --hard
git checkout $tag
;;
esac
tag=$major.$minor.$patch
git tag -a $tag -m "Bump version to $tag"
'''.stripIndent())
withCredentials([gitUsernamePassword(credentialsId: 'KK-github-key', gitToolName: 'git-tool')]) {
sh 'git push --tag'
}
}
}
stage('Pick tag version for testing') {
when {
anyOf{
expression { RELEASE_TARGET == 'true' }
expression { BUILD_TARGET == 'true' }
}
expression { TAG_FOR == 'testing' }
}
steps {
sh(returnStdout: false, script: '''
set +e
# sync remote tags
git tag -l | xargs git tag -d
git fetch origin --prune
'''.stripIndent())
script {
env.TAG_VERSION = sh(returnStdout: true,
script: 'git tag|grep \'[13579]$\'|sort -V|tail -n 1| tr -d \'\\n\''
)
}
}
}
stage('Pick tag version for production') {
when {
anyOf{
expression { RELEASE_TARGET == 'true' }
expression { BUILD_TARGET == 'true' }
}
expression { TAG_FOR == 'production' }
}
steps {
sh(returnStdout: false, script: '''
set +e
# sync remote tags
git tag -l | xargs git tag -d
git fetch origin --prune
'''.stripIndent())
script {
env.TAG_VERSION = sh(returnStdout: true,
script: 'git tag|grep \'[02468]$\'|sort -V|tail -n 1| tr -d \'\\n\''
)
}
}
}
stage('Generate docker image for test or prod') {
when {
expression { BUILD_TARGET == 'true' }
anyOf{
expression { TAG_FOR == 'testing' }
expression { TAG_FOR == 'production' }
}
}
steps {
sh(returnStdout: false, script: '''
set +e
git reset --hard
git checkout $TAG_VERSION
'''.stripIndent())
sh 'TAG=$TAG_VERSION DOCKER_REGISTRY=$DOCKER_REGISTRY make build-docker'
}
}
stage('Release docker image for test or prod') {
when {
expression { RELEASE_TARGET == 'true' }
anyOf{
expression { TAG_FOR == 'testing' }
expression { TAG_FOR == 'production' }
}
}
steps {
sh 'TAG=$TAG_VERSION DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker'
}
}
stage('Release docker image for all(development testing production)') {
when {
expression { RELEASE_TARGET == 'true' }
expression { TAG_FOR == '' }
expression { BRANCH_NAME == 'master' }
}
steps {
sh 'TAG=latest DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker'
sh(returnStdout: false, script: '''
# sync remote tags
git tag -l | xargs git tag -d
git fetch origin --prune
echo $?
set +e
prod_tag=$(git tag|grep '[02468]$'|sort -V|tail -n 1| tr -d '\n')
docker images | grep web3eye | grep $prod_tag
rc=$?
set -e
if [ 0 -eq $rc ]; then
TAG=$prod_tag DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker
fi
set +e
test_tag=$(git tag|grep '[13579]$'|sort -V|tail -n 1| tr -d '\n')
docker images | grep web3eye | grep $test_tag
rc=$?
set -e
if [ 0 -eq $rc ]; then
TAG=$test_tag DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker
fi
'''.stripIndent())
sh(returnStdout: false, script: '''
images=`docker images | grep 'web3eye|none' | awk '{ print $3 }'`
for image in $images; do
docker rmi $image -f
done
'''.stripIndent())
}
}
// switch k8s env
stage('Switch to current cluster') {
when {
expression { DEPLOY_TARGET == 'true' }
}
steps {
sh 'cd /etc/kubeasz; ./ezctl checkout $TARGET_ENV'
}
}
stage('Deploy for feature') {
when {
expression { DEPLOY_TARGET == 'true' }
expression { BRANCH_NAME != 'master' }
}
steps {
sh(returnStdout: false, script: '''
feature_name=`echo $BRANCH_NAME | awk -F '/' '{ print $2 }'`
export CERT_NAME=$CERT_NAME # for webui and dashboard
export ROOT_DOMAIN=$ROOT_DOMAIN # for webui dashboard and gateway
export ROOT_DOMAIN_HTTP_PORT=$ROOT_DOMAIN_HTTP_PORT # for gateway
TAG=$feature_name make deploy-to-k8s-cluster
'''.stripIndent())
}
}
stage('Deploy for dev') {
when {
expression { DEPLOY_TARGET == 'true' }
expression { BRANCH_NAME == 'master' }
expression { TARGET_ENV ==~ /.*development.*/ }
}
steps {
sh(returnStdout: true, script: '''
export CERT_NAME=$CERT_NAME # for webui and dashboard
export ROOT_DOMAIN=$ROOT_DOMAIN # for webui dashboard and gateway
export ROOT_DOMAIN_HTTP_PORT=$ROOT_DOMAIN_HTTP_PORT # for gateway
TAG=latest make deploy-to-k8s-cluster
'''.stripIndent())
}
}
stage('Deploy for test') {
when {
expression { DEPLOY_TARGET == 'true' }
expression { BRANCH_NAME == 'master' }
anyOf{
expression { TARGET_ENV ==~ /.*testing.*/ }
}
}
steps {
sh(returnStdout: true, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
if [ ! 0 -eq $rc ]; then
exit 0
fi
tag=`git describe --tags $revlist`
git reset --hard
git checkout $tag
export CERT_NAME=$CERT_NAME # for webui and dashboard
export ROOT_DOMAIN=$ROOT_DOMAIN # for webui dashboard and gateway
export ROOT_DOMAIN_HTTP_PORT=$ROOT_DOMAIN_HTTP_PORT # for gateway
TAG=$tag make deploy-to-k8s-cluster
'''.stripIndent())
}
}
stage('Deploy for prod') {
when {
expression { DEPLOY_TARGET == 'true' }
expression { BRANCH_NAME == 'master' }
anyOf{
expression { TARGET_ENV ==~ /.*production.*/ }
}
}
steps {
sh(returnStdout: true, script: '''
tag=$(git tag|grep '[02468]$'|sort -V|tail -n 1| tr -d '\n')
git reset --hard
git checkout $tag
export CERT_NAME=$CERT_NAME # for webui and dashboard
export ROOT_DOMAIN=$ROOT_DOMAIN # for webui dashboard and gateway
export ROOT_DOMAIN_HTTP_PORT=$ROOT_DOMAIN_HTTP_PORT # for gateway
TAG=$tag make deploy-to-k8s-cluster
'''.stripIndent())
}
}
stage('Post') {
steps {
sh 'echo Posting'
}
}
}
post('Report') {
always {
echo "Anyway,finished the job."
}
// 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'
// }
// }
}
}