forked from v3io/v3io-tsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
496 lines (455 loc) · 22.8 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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
label = "${UUID.randomUUID().toString()}"
BUILD_FOLDER = "/go"
expired=240
attempts=15
git_project = "v3io-tsdb"
git_project_user = "v3io"
git_deploy_user = "iguazio-prod-git-user"
git_deploy_user_token = "iguazio-prod-git-user-token"
git_deploy_user_private_key = "iguazio-prod-git-user-private-key"
def build_v3io_tsdb(TAG_VERSION) {
withCredentials([
usernamePassword(credentialsId: git_deploy_user, passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME'),
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
def git_project = 'v3io-tsdb'
stage('prepare sources') {
container('jnlp') {
dir("${BUILD_FOLDER}/src/github.com/v3io/${git_project}") {
git(changelog: false, credentialsId: git_deploy_user_private_key, poll: false, url: "[email protected]:${git_project_user}/${git_project}.git")
sh("git checkout ${TAG_VERSION}")
}
}
}
stage("build ${git_project} binaries in dood") {
container('golang') {
dir("${BUILD_FOLDER}/src/github.com/v3io/${git_project}") {
sh """
GOOS=linux GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
GOOS=darwin GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
GOOS=windows GOARCH=amd64 TRAVIS_TAG=${TAG_VERSION} make bin
ls -la /go/bin
"""
}
}
}
stage('upload release assets') {
container('jnlp') {
RELEASE_ID = github.get_release_id(git_project, git_project_user, "${TAG_VERSION}", GIT_TOKEN)
github.upload_asset(git_project, git_project_user, "tsdbctl-${TAG_VERSION}-linux-amd64", RELEASE_ID, GIT_TOKEN)
github.upload_asset(git_project, git_project_user, "tsdbctl-${TAG_VERSION}-darwin-amd64", RELEASE_ID, GIT_TOKEN)
github.upload_asset(git_project, git_project_user, "tsdbctl-${TAG_VERSION}-windows-amd64", RELEASE_ID, GIT_TOKEN)
}
}
}
}
def build_nuclio(V3IO_TSDB_VERSION) {
withCredentials([
usernamePassword(credentialsId: git_deploy_user, passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME'),
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
def git_project = 'tsdb-nuclio'
stage('prepare sources') {
container('jnlp') {
sh """
cd ${BUILD_FOLDER}
git clone https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${git_project_user}/${git_project}.git src/github.com/v3io/${git_project}
cd ${BUILD_FOLDER}/src/github.com/v3io/${git_project}
rm -rf functions/ingest/vendor/github.com/v3io/v3io-tsdb functions/query/vendor/github.com/v3io/v3io-tsdb
git clone https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${git_project_user}/v3io-tsdb.git functions/ingest/vendor/github.com/v3io/v3io-tsdb
cd functions/ingest/vendor/github.com/v3io/v3io-tsdb
git checkout ${V3IO_TSDB_VERSION}
rm -rf .git vendor/github.com/v3io vendor/github.com/nuclio
cd ${BUILD_FOLDER}/src/github.com/v3io/${git_project}
cp -R functions/ingest/vendor/github.com/v3io/v3io-tsdb functions/query/vendor/github.com/v3io/v3io-tsdb
"""
}
}
stage('git push') {
container('jnlp') {
try {
dir("${BUILD_FOLDER}/src/github.com/v3io/${git_project}") {
sh """
git config --global user.email '${GIT_USERNAME}@iguazio.com'
git config --global user.name '${GIT_USERNAME}'
git add functions/ingest/vendor/github.com functions/query/vendor/github.com;
git commit -am 'Updated TSDB to ${V3IO_TSDB_VERSION}';
git push origin master
"""
}
} catch (err) {
echo "Can not push code to master"
}
}
container('jnlp') {
try {
dir("${BUILD_FOLDER}/src/github.com/v3io/${git_project}") {
sh """
git checkout development
git merge origin/master
git push origin development
"""
}
} catch (err) {
echo "Can not push code to development"
}
}
}
}
}
def build_demo(V3IO_TSDB_VERSION) {
withCredentials([
usernamePassword(credentialsId: git_deploy_user, passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME'),
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
def git_project = 'demos'
stage('prepare sources') {
container('jnlp') {
sh """
cd ${BUILD_FOLDER}
git clone https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${git_project_user}/${git_project}.git src/github.com/v3io/${git_project}
cd ${BUILD_FOLDER}/src/github.com/v3io/${git_project}/netops/golang/src/github.com/v3io/demos
rm -rf vendor/github.com/v3io/v3io-tsdb/
git clone https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${git_project_user}/v3io-tsdb.git vendor/github.com/v3io/v3io-tsdb
cd vendor/github.com/v3io/v3io-tsdb
git checkout ${V3IO_TSDB_VERSION}
rm -rf .git vendor/github.com/v3io vendor/github.com/nuclio
"""
}
}
stage('git push') {
container('jnlp') {
try {
dir("${BUILD_FOLDER}/src/github.com/v3io/${git_project}/netops") {
sh """
git config --global user.email '${GIT_USERNAME}@iguazio.com'
git config --global user.name '${GIT_USERNAME}'
git add golang/src/github.com/v3io/demos/vendor/github.com;
git commit -am 'Updated TSDB to ${V3IO_TSDB_VERSION}';
git push origin master
"""
}
} catch (err) {
echo "Can not push code to master"
}
}
container('jnlp') {
try {
dir("${BUILD_FOLDER}/src/github.com/v3io/${git_project}/netops") {
sh """
git checkout development
git merge origin/master
git push origin development
"""
}
} catch (err) {
echo "Can not push code to development"
}
}
}
}
}
def build_prometheus(V3IO_TSDB_VERSION) {
withCredentials([
usernamePassword(credentialsId: git_deploy_user, passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME'),
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
def git_project = 'prometheus'
stage('prepare sources') {
container('jnlp') {
sh """
cd ${BUILD_FOLDER}
if [[ ! -d src/github.com/${git_project}/${git_project} ]]; then
git clone https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${git_project_user}/${git_project}.git src/github.com/${git_project}/${git_project}
fi
cd ${BUILD_FOLDER}/src/github.com/${git_project}/${git_project}
rm -rf vendor/github.com/v3io/v3io-tsdb/
git clone https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${git_project_user}/v3io-tsdb.git vendor/github.com/v3io/v3io-tsdb
cd vendor/github.com/v3io/v3io-tsdb
git checkout ${V3IO_TSDB_VERSION}
rm -rf .git vendor/github.com/${git_project}
"""
}
}
stage('git push') {
container('jnlp') {
try {
dir("${BUILD_FOLDER}/src/github.com/${git_project}/${git_project}") {
sh """
git config --global user.email '${GIT_USERNAME}@iguazio.com'
git config --global user.name '${GIT_USERNAME}'
git add vendor/github.com;
git commit -am 'Updated TSDB to ${V3IO_TSDB_VERSION}';
git push origin master
"""
}
} catch (err) {
echo "Can not push code to master"
}
}
}
}
}
podTemplate(label: "${git_project}-${label}", yaml: """
apiVersion: v1
kind: Pod
metadata:
name: "${git_project}-${label}"
labels:
jenkins/kube-default: "true"
app: "jenkins"
component: "agent"
spec:
shareProcessNamespace: true
containers:
- name: jnlp
image: jenkins/jnlp-slave
resources:
limits:
cpu: 1
memory: 2Gi
requests:
cpu: 1
memory: 2Gi
volumeMounts:
- name: go-shared
mountPath: /go
- name: docker-cmd
image: docker
command: [ "/bin/sh", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]
volumeMounts:
- name: docker-sock
mountPath: /var/run
- name: go-shared
mountPath: /go
- name: golang
image: golang:1.11
command: [ "/bin/sh", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]
volumeMounts:
- name: go-shared
mountPath: /go
volumes:
- name: docker-sock
hostPath:
path: /var/run
- name: go-shared
emptyDir: {}
"""
) {
def MAIN_TAG_VERSION
def PUBLISHED_BEFORE
def next_versions = ['demos':null, 'prometheus':null, 'tsdb-nuclio':null]
pipelinex = library(identifier: 'pipelinex@DEVOPS-204-pipelinex', retriever: modernSCM(
[$class: 'GitSCMSource',
credentialsId: git_deploy_user_private_key,
remote: "[email protected]:iguazio/pipelinex.git"])).com.iguazio.pipelinex
common.notify_slack {
node("${git_project}-${label}") {
withCredentials([
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
stage('get tag data') {
container('jnlp') {
MAIN_TAG_VERSION = github.get_tag_version(TAG_NAME)
PUBLISHED_BEFORE = github.get_tag_published_before(git_project, git_project_user, "${MAIN_TAG_VERSION}", GIT_TOKEN)
echo "$MAIN_TAG_VERSION"
echo "$PUBLISHED_BEFORE"
}
}
}
}
if (MAIN_TAG_VERSION != null && MAIN_TAG_VERSION.length() > 0 && PUBLISHED_BEFORE < expired) {
parallel(
'v3io-tsdb': {
podTemplate(label: "v3io-tsdb-${label}", inheritFrom: "${git_project}-${label}", containers: [
containerTemplate(name: 'golang', image: 'golang:1.11')
]) {
node("v3io-tsdb-${label}") {
withCredentials([
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
build_v3io_tsdb(MAIN_TAG_VERSION)
}
}
}
},
'tsdb-nuclio': {
podTemplate(label: "v3io-tsdb-nuclio-${label}", inheritFrom: "${git_project}-${label}") {
node("v3io-tsdb-nuclio-${label}") {
withCredentials([
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
def NEXT_VERSION
stage('get previous release version') {
container('jnlp') {
NEXT_VERSION = github.get_next_tag_version("tsdb-nuclio", git_project_user, GIT_TOKEN)
echo "$NEXT_VERSION"
next_versions.putAt("tsdb-nuclio", NEXT_VERSION)
}
}
build_nuclio(TAG_NAME)
stage('create tsdb-nuclio prerelease') {
container('jnlp') {
github.create_prerelease("tsdb-nuclio", git_project_user, NEXT_VERSION, GIT_TOKEN)
}
}
}
}
}
},
'demos': {
podTemplate(label: "demos-${label}", inheritFrom: "${git_project}-${label}") {
node("demos-${label}") {
withCredentials([
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
def NEXT_VERSION
stage('get previous release version') {
container('jnlp') {
NEXT_VERSION = github.get_next_tag_version("demos", git_project_user, GIT_TOKEN)
echo "$NEXT_VERSION"
next_versions.putAt('demos', NEXT_VERSION)
}
}
build_demo(TAG_NAME)
stage('create demos prerelease') {
container('jnlp') {
github.create_prerelease("demos", git_project_user, NEXT_VERSION, GIT_TOKEN)
}
}
}
}
}
},
'prometheus': {
podTemplate(label: "v3io-tsdb-prometheus-${label}", inheritFrom: "${git_project}-${label}") {
node("v3io-tsdb-prometheus-${label}") {
withCredentials([
usernamePassword(credentialsId: git_deploy_user, passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME'),
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
def TAG_VERSION
def NEXT_VERSION
stage('trigger') {
container('jnlp') {
sh """
cd ${BUILD_FOLDER}
git clone https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/${git_project_user}/prometheus.git src/github.com/prometheus/prometheus
"""
TAG_VERSION = sh(
script: "cat ${BUILD_FOLDER}/src/github.com/prometheus/prometheus/VERSION",
returnStdout: true
).trim()
}
}
if (TAG_VERSION) {
stage('get previous release version') {
container('jnlp') {
NEXT_VERSION = "v${TAG_VERSION}-${TAG_NAME}"
echo "$NEXT_VERSION"
next_versions.putAt('prometheus', NEXT_VERSION)
}
}
build_prometheus(TAG_NAME)
stage('create prometheus prerelease') {
container('jnlp') {
github.create_prerelease("prometheus", git_project_user, NEXT_VERSION, GIT_TOKEN)
}
}
}
}
}
}
}
)
} else {
stage('warning') {
if (PUBLISHED_BEFORE >= expired) {
echo "Tag too old, published before $PUBLISHED_BEFORE minutes."
} else {
echo "${MAIN_TAG_VERSION} is not release tag."
}
}
}
node("${git_project}-${label}") {
withCredentials([
string(credentialsId: git_deploy_user_token, variable: 'GIT_TOKEN')
]) {
stage('waiting for prereleases moved to releases') {
container('jnlp') {
i = 0
def tasks_list = ['demos': null, 'prometheus': null, 'tsdb-nuclio': null]
def success_count = 0
while (true) {
def done_count = 0
echo "attempt #${i}"
tasks_list.each { project, status ->
if (status == null) {
def RELEASE_SUCCESS = sh(
script: "curl --silent -H \"Content-Type: application/json\" -H \"Authorization: token ${GIT_TOKEN}\" -X GET https://api.github.com/repos/${git_project_user}/${project}/releases/tags/${next_versions[project]} | python -c 'import json,sys;obj=json.load(sys.stdin);print obj[\"prerelease\"]' | if grep -iq false; then echo 'release'; else echo 'prerelease'; fi",
returnStdout: true
).trim()
echo "${project} is ${RELEASE_SUCCESS}"
if (RELEASE_SUCCESS != null && RELEASE_SUCCESS == 'release') {
tasks_list.putAt(project, true)
done_count++
success_count++
} else {
def TAG_SHA = sh(
script: "curl --silent -H \"Content-Type: application/json\" -H \"Authorization: token ${GIT_TOKEN}\" -X GET https://api.github.com/repos/${git_project_user}/${project}/git/refs/tags/${next_versions[project]} | python -c 'import json,sys;obj=json.load(sys.stdin);print obj[\"object\"][\"sha\"]'",
returnStdout: true
).trim()
if (TAG_SHA != null) {
def COMMIT_STATUS = sh(
script: "curl --silent -H \"Content-Type: application/json\" -H \"Authorization: token ${GIT_TOKEN}\" -X GET https://api.github.com/repos/${git_project_user}/${project}/commits/${TAG_SHA}/statuses | python -c 'import json,sys;obj=json.load(sys.stdin);print obj[0][\"state\"]' | if grep -iq error; then echo 'error'; else echo 'ok'; fi",
returnStdout: true
).trim()
if (COMMIT_STATUS != null && COMMIT_STATUS == 'error') {
tasks_list.putAt(project, false)
done_count++
}
}
}
} else {
done_count++
}
}
if (success_count >= tasks_list.size()) {
echo "all releases have been successfully completed"
break
}
if (done_count >= tasks_list.size() || i++ > attempts) {
def failed = []
def notcompleted = []
def error_string = ''
tasks_list.each { project, status ->
if (status == null) {
notcompleted += project
} else if (status == false) {
failed += project
}
}
if (failed.size()) {
error_string += failed.join(',') + ' have been failed :_(. '
}
if (notcompleted.size()) {
error_string += notcompleted.join(',') + ' have been not completed :(. '
}
error(error_string)
break
}
sleep(60)
}
}
}
stage('update release status') {
container('jnlp') {
github.update_release_status(git_project, git_project_user, "${MAIN_TAG_VERSION}", GIT_TOKEN)
}
}
}
}
}
}