-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
393 lines (362 loc) · 15 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
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 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
{
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)
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 ../Examples/test.cpp"
bash "cd ./Build && ./runcpp2 -l -b " +
"-c ../DefaultYAMLs/DefaultUserConfig.yaml " +
"--log-level info ../Examples/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 ../Examples/test_static.cpp"
bash "ls -lah ./Build"
}
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 ..\\..\\Examples\\test.cpp"
bat "cd .\\Build\\Debug && .\\runcpp2.exe -l -b " +
"-c ..\\..\\DefaultYAMLs\\DefaultUserConfig.yaml " +
"--log-level info ..\\..\\Examples\\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 ..\\..\\Examples\\test_static.cpp"
bat "dir .\\Build\\Debug"
}
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