-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
579 lines (533 loc) · 23.1 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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
def bash(command, returnOutput=false)
{
return sh(script: """#!/bin/bash
${command}
""",
returnStdout: returnOutput)
}
def SetGithubStatus(githubToken, context, targetUrl, desc, status, repoOwner, repoName, gitHash)
{
bash """
curl -L --fail-with-body \\
-X POST \\
-H "Accept: application/vnd.github+json" \\
-H "Authorization: Bearer ${githubToken}" \\
-H "X-GitHub-Api-Version: 2022-11-28" \\
-d '{
"context": "${context}",
"target_url": "${targetUrl}",
"description": "${desc}",
"state": "${status}"
}' \\
https://api.github.com/repos/${repoOwner}/${repoName}/statuses/${gitHash}
"""
}
def UpdateNightlyTag(githubToken, repoOwner, repoName, expectedHash)
{
// Install jq and zip if not already installed
bash """
if ! command -v jq &> /dev/null; then
echo "Installing jq..."
apt-get update
apt-get install -y jq
fi
if ! command -v zip &> /dev/null; then
echo "Installing zip..."
apt-get update
apt-get install -y jq zip
fi
"""
def response = bash """
curl -L --fail-with-body \\
-X PATCH \\
-H "Accept: application/vnd.github+json" \\
-H "Authorization: Bearer ${githubToken}" \\
-H "X-GitHub-Api-Version: 2022-11-28" \\
-d '{
"sha":"${expectedHash}",
"force":true
}' \\
https://api.github.com/repos/${repoOwner}/${repoName}/git/refs/tags/nightly
"""
echo "response: ${response}"
}
def UploadArtifactToGithub(githubToken, repoOwner, repoName, tagName, artifactPath, artifactName)
{
bash """
# Create a release if it doesn't exist
RELEASE_ID=\$(curl -s -L --fail-with-body \\
-H "Authorization: Bearer ${githubToken}" \\
"https://api.github.com/repos/${repoOwner}/${repoName}/releases/tags/${tagName}" \\
| jq -r '.id')
if [ "\$RELEASE_ID" = "null" ]; then
RELEASE_ID=\$(curl -s -L --fail-with-body \\
-X POST \\
-H "Accept: application/vnd.github+json" \\
-H "Authorization: Bearer ${githubToken}" \\
-H "X-GitHub-Api-Version: 2022-11-28" \\
-d '{
"tag_name": "${tagName}",
"name": "Nightly Build",
"body": "Automated nightly build from CI"
}' \\
"https://api.github.com/repos/${repoOwner}/${repoName}/releases" | jq -r '.id')
fi
curl -L --fail-with-body \\
-X PATCH \\
-H "Accept: application/vnd.github+json" \\
-H "Authorization: Bearer ${githubToken}" \\
-H "X-GitHub-Api-Version: 2022-11-28" \\
-d '{
"tag_name": "${tagName}",
"name": "Nightly Build",
"body": "Automated nightly build from CI"
}' \\
"https://api.github.com/repos/${repoOwner}/${repoName}/releases/\${RELEASE_ID}"
# Check if the asset already exists
ASSET_ID=\$(curl -s -L --fail-with-body \\
-H "Authorization: Bearer ${githubToken}" \\
"https://api.github.com/repos/${repoOwner}/${repoName}/releases/\${RELEASE_ID}/assets" |
jq -r ".[] | select(.name == \\\"${artifactName}\\\") | .id")
if [ "\$ASSET_ID" != "" ]; then
echo "Asset ${artifactName} already exists with ID \$ASSET_ID. Deleting it..."
curl -L --fail-with-body \\
-X DELETE \\
-H "Accept: application/vnd.github+json" \\
-H "Authorization: Bearer ${githubToken}" \\
-H "X-GitHub-Api-Version: 2022-11-28" \\
"https://api.github.com/repos/${repoOwner}/${repoName}/releases/assets/\${ASSET_ID}"
fi
# Upload the artifact
curl -L --fail-with-body \\
-X POST \\
-H "Accept: application/vnd.github+json" \\
-H "Authorization: Bearer ${githubToken}" \\
-H "Content-Type: application/octet-stream" \\
--data-binary "@${artifactPath}" \\
"https://uploads.github.com/repos/${repoOwner}/${repoName}/releases/\${RELEASE_ID}/assets?name=${artifactName}"
"""
//"""
}
def REPO_OWNER = "Neko-Box-Coder"
def REPO_NAME = "runcpp2"
def TARGET_URL = 'https://github.com/Neko-Box-Coder/runcpp2.git'
def STATUS_CONTEXT_URL = "https://ci.nekoboxcoder.dev/job/runcpp2/${BUILD_NUMBER}/pipeline-graph/"
def FAILED_STAGE = "None"
def TARGET_REF = "refs/heads/master"
def STORE_BUILD = false
pipeline
{
agent none
options { skipDefaultCheckout() }
/*
External Variables for webhook payload:
Webhook:
GITHUB_PUSH_REF: $.ref
GITHUB_PR_ACTION: $.action
GITHUB_PR_GIT_URL: $.pull_request.head.repo.clone_url
GITHUB_PR_REF: $.pull_request.head.ref
GITHUB_PR_REPO_OWNER: $.pull_request.user.login
GITHUB_PR_REPO_NAME: $.pull_request.head.repo.name
X-GitHub-Event: (Header)
Trigger:
$GITHUB_PUSH_REF , $GITHUB_PR_REF , $GITHUB_PR_ACTION
^refs/heads/master , , $|^ , .[a-zA-Z/]* , (opened|synchronize)$
Param:
TARGET_REF
STORE_BUILD
*/
stages
{
stage('Setup')
{
agent none
steps
{
script
{
echo "env.TARGET_REF: ${env.TARGET_REF}"
echo "env.STORE_BUILD: ${env.STORE_BUILD}"
echo "Updated Jenkinsfile"
if(env.TARGET_REF != null && env.TARGET_REF != '')
TARGET_REF = env.TARGET_REF
if(env.STORE_BUILD != null && env.STORE_BUILD != '')
STORE_BUILD = env.STORE_BUILD.toBoolean()
echo "Displaying Webhook Variables:"
echo "GITHUB_PUSH_REF: ${env.GITHUB_PUSH_REF}"
echo "GITHUB_PR_ACTION: ${env.GITHUB_PR_ACTION}"
echo "GITHUB_PR_GIT_URL: ${env.GITHUB_PR_GIT_URL}"
echo "GITHUB_PR_REF: ${env.GITHUB_PR_REF}"
echo "GITHUB_PR_REPO_OWNER: ${env.GITHUB_PR_REPO_OWNER}"
echo "GITHUB_PR_REPO_NAME: ${env.GITHUB_PR_REPO_NAME}"
echo "X_GitHub_Event: ${env.X_GitHub_Event}"
//Trigger pipeline on push to master
if(env.X_GitHub_Event == 'push')
{
if(env.GITHUB_PUSH_REF != 'refs/heads/master')
error('Receiving non master push')
}
//Trigger pipeline with approval on PR
else if(env.X_GitHub_Event == 'pull_request')
{
if(env.GITHUB_PR_ACTION != 'synchronize' && env.GITHUB_PR_ACTION != 'opened')
error('Receiving non relevant PR action')
else
{
if(env.GITHUB_PR_REPO_OWNER == REPO_OWNER)
{
echo "env.GITHUB_PR_REPO_OWNER (${env.GITHUB_PR_REPO_OWNER}) is " +
"the same as original REPO_OWNER (${REPO_OWNER})"
echo "Skipping approval..."
}
else
{
echo "env.GITHUB_PR_REPO_OWNER (${env.GITHUB_PR_REPO_OWNER}) is " +
" not the same as original REPO_OWNER (${REPO_OWNER})"
timeout(time: 30, unit: 'MINUTES')
{
input 'Approval this job?'
}
}
}
TARGET_REF = env.GITHUB_PR_REF
TARGET_URL = env.GITHUB_PR_GIT_URL
REPO_OWNER = env.GITHUB_PR_REPO_OWNER
REPO_NAME = env.GITHUB_PR_REPO_NAME
}
//Invalid github event
else if(env.X_GitHub_Event != null)
error("Invalid github event: ${env.X_GitHub_Event}")
echo "TARGET_REF: ${TARGET_REF}"
echo "env.TARGET_REF: ${env.TARGET_REF}"
echo "TARGET_URL: ${TARGET_URL}"
echo "REPO_OWNER: ${REPO_OWNER}"
echo "REPO_NAME: ${REPO_NAME}"
echo "STATUS_CONTEXT_URL: ${STATUS_CONTEXT_URL}"
echo "STORE_BUILD: ${STORE_BUILD}"
}
}
}
stage('Checkout')
{
agent { label 'linux' }
steps
{
cleanWs()
script
{
checkout(
[
$class: 'GitSCM',
branches: [[name: TARGET_REF]],
doGenerateSubmoduleConfigurations: true,
extensions: scm.extensions +
[[
$class: 'SubmoduleOption',
parentCredentials: true,
recursiveSubmodules: true
]],
userRemoteConfigs: [[url: TARGET_URL]]
]
)
GIT_HASH = bash("echo \$(git rev-parse --verify HEAD)", true).trim()
echo "GITHASH: ${GIT_HASH}"
if(!STORE_BUILD)
{
withCredentials([string(credentialsId: 'github-token',
variable: 'GITHUB_TOKEN')])
{
SetGithubStatus('$GITHUB_TOKEN',
"CI Pipeline",
STATUS_CONTEXT_URL,
"Build ${BUILD_NUMBER} stage ${env.STAGE_NAME} started",
"pending",
REPO_OWNER,
REPO_NAME,
GIT_HASH)
}
}
stash 'source'
}
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
stage('Build')
{
parallel
{
stage('Linux Build')
{
agent { label 'linux' }
steps
{
cleanWs()
bash "ls -lah"
unstash 'source'
bash "ls -lah"
bash('chmod +x ./Build.sh')
bash './Build.sh -DRUNCPP2_BUILD_TESTS=ON'
stash 'linux_build'
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
stage('Windows Build')
{
agent { label 'windows' }
steps
{
cleanWs()
bat 'dir'
unstash 'source'
bat 'dir'
script
{
try
{
bat 'Build.bat -DRUNCPP2_BUILD_TESTS=ON'
}
catch(error)
{
echo "Build failed. Maybe .pdb is locked? Retrying..."
sleep 5
bat 'Build.bat -DRUNCPP2_BUILD_TESTS=ON'
}
}
stash 'windows_build'
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
}
//NOTE: We use Debug builds for now even for release.
}
stage('Test')
{
parallel
{
stage('Linux Unit Test')
{
agent { label 'linux' }
steps
{
cleanWs()
bash "ls -lah"
unstash 'linux_build'
bash "ls -lah"
bash "ls -lah ./Build/Src/Tests"
bash "chmod +x ./Build/Src/Tests/RunAllTests.sh"
bash "cd ./Build/Src/Tests && ./RunAllTests.sh"
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
stage('Linux Integration Test')
{
agent { label 'linux' }
steps
{
cleanWs()
bash "ls -lah"
unstash 'linux_build'
bash "ls -lah"
bash "ls -lah ./Build/Src/Tests"
bash "cd ./Build && ./runcpp2 -l " +
"-c ../DefaultYAMLs/DefaultUserConfig.yaml " +
"--log-level info ../Tests/test.cpp"
bash "cd ./Build && ./runcpp2 -l -b " +
"-c ../DefaultYAMLs/DefaultUserConfig.yaml " +
"--log-level info ../Tests/test.cpp"
bash "ls -lah ./Build"
cleanWs()
bash "ls -lah"
unstash 'linux_build'
bash "ls -lah"
bash "ls -lah ./Build/Src/Tests"
bash "cd ./Build && ./runcpp2 -l -b " +
"-c ../DefaultYAMLs/DefaultUserConfig.yaml " +
"--log-level info ../Tests/test_static.cpp"
bash "ls -lah ./Build"
cleanWs()
bash "ls -lah"
unstash 'linux_build'
bash "ls -lah"
bash "ls -lah ./Build/Src/Tests"
bash "cd ./Build && ./runcpp2 -l " +
"-c ../DefaultYAMLs/DefaultUserConfig.yaml " +
"--log-level info ../Tests/testLocalDependency.cpp"
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
stage('Windows Unit Test')
{
agent { label 'windows' }
steps
{
cleanWs()
bat 'dir'
unstash 'windows_build'
bat 'dir'
bat 'dir .\\Build\\Src\\Tests\\Debug'
bat 'cd .\\Build\\Src\\Tests && .\\RunAllTests.bat -d'
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
stage('Windows Integration Test')
{
agent { label 'windows' }
steps
{
cleanWs()
bat 'dir'
unstash 'windows_build'
bat 'dir'
bat "cd .\\Build\\Debug && .\\runcpp2.exe -l " +
"-c ..\\..\\DefaultYAMLs\\DefaultUserConfig.yaml " +
"--log-level info ..\\..\\Tests\\test.cpp"
bat "cd .\\Build\\Debug && .\\runcpp2.exe -l -b " +
"-c ..\\..\\DefaultYAMLs\\DefaultUserConfig.yaml " +
"--log-level info ..\\..\\Tests\\test.cpp"
bat "dir .\\Build\\Debug"
cleanWs()
bat 'dir'
unstash 'windows_build'
bat 'dir'
bat "cd .\\Build\\Debug && .\\runcpp2.exe -l -b " +
"-c ..\\..\\DefaultYAMLs\\DefaultUserConfig.yaml " +
"--log-level info ..\\..\\Tests\\test_static.cpp"
bat "dir .\\Build\\Debug"
cleanWs()
bat 'dir'
unstash 'windows_build'
bat 'dir'
bat "cd .\\Build\\Debug && .\\runcpp2.exe -l " +
"-c ..\\..\\DefaultYAMLs\\DefaultUserConfig.yaml " +
"--log-level info ..\\..\\Tests\\testLocalDependency.cpp"
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
}
}
stage('Update GitHub Nightly Release')
{
agent { label 'linux' }
when
{
expression { return env.X_GitHub_Event == 'push' &&
env.GITHUB_PUSH_REF == 'refs/heads/master' }
}
steps
{
script
{
withCredentials([string(credentialsId: 'github-token', variable: 'GITHUB_TOKEN')])
{
//Wait for nightly tag to be updated to the correct commit
UpdateNightlyTag('$GITHUB_TOKEN', REPO_OWNER, REPO_NAME, GIT_HASH)
//Upload Linux executable
dir('WindowsBuild') { unstash 'windows_build' }
dir('LinuxBuild') { unstash 'linux_build' }
if (fileExists('LinuxBuild/Build/runcpp2'))
{
bash """
cd LinuxBuild/Build
zip -9 ../../runcpp2-linux.zip runcpp2
"""
UploadArtifactToGithub( '$GITHUB_TOKEN',
REPO_OWNER,
REPO_NAME,
"nightly",
"runcpp2-linux.zip",
"runcpp2-linux.zip")
}
else
{
error('Failed to find linux build')
}
//Upload Windows executable
if (fileExists('WindowsBuild/Build/Debug/runcpp2.exe'))
{
bash """
cd WindowsBuild/Build/Debug
zip -9 ../../../runcpp2-windows.zip runcpp2.exe
"""
UploadArtifactToGithub( '$GITHUB_TOKEN',
REPO_OWNER,
REPO_NAME,
"nightly",
"runcpp2-windows.zip",
"runcpp2-windows.zip")
}
else
{
error('Failed to find windows build')
}
}
}
}
post { failure { script { FAILED_STAGE = env.STAGE_NAME } } }
}
stage('Notify')
{
agent { label 'linux' }
when { expression { STORE_BUILD == false } }
steps
{
cleanWs()
withCredentials([string(credentialsId: 'github-token', variable: 'GITHUB_TOKEN')])
{
SetGithubStatus('$GITHUB_TOKEN',
"CI Pipeline",
STATUS_CONTEXT_URL,
"Build ${BUILD_NUMBER} Pipeline passed",
"success",
REPO_OWNER,
REPO_NAME,
GIT_HASH)
}
}
}
stage('Release')
{
agent { label 'linux' }
when { expression { STORE_BUILD == true } }
steps
{
cleanWs()
dir('WindowsBuild') { unstash 'windows_build' }
dir('LinuxBuild') { unstash 'linux_build' }
archiveArtifacts artifacts: 'LinuxBuild/Build/runcpp2',
defaultExcludes: false,
fingerprint: true,
onlyIfSuccessful: true
archiveArtifacts artifacts: 'WindowsBuild/Build/Debug/runcpp2.exe',
defaultExcludes: false,
fingerprint: true,
onlyIfSuccessful: true
}
}
} //stages
post
{
failure
{
node('linux')
{
script
{
if(!STORE_BUILD)
{
withCredentials([string(credentialsId: 'github-token', variable: 'GITHUB_TOKEN')])
{
SetGithubStatus('$GITHUB_TOKEN',
"CI Pipeline",
STATUS_CONTEXT_URL,
"Build ${BUILD_NUMBER} Stage ${FAILED_STAGE} failed",
"failure",
REPO_OWNER,
REPO_NAME,
GIT_HASH)
}
}
}
}
}
}
} //pipeline