-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathJenkinsfile
493 lines (487 loc) · 22.2 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
// Notes:
// Windows build: put wget, msbuild and build tools in path (C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30037\bin\Hostx64\x64)
void gitCheckout() {
def retryAttempt = 0
retry(3) {
if (retryAttempt > 0) {
sleep(120 * retryAttempt)
}
checkout scm
}
}
pipeline {
agent none
options {
skipDefaultCheckout(true)
// emscripten unit tests require this
disableConcurrentBuilds()
}
stages {
stage ('Test') {
parallel {
stage ('Test Emscripten') {
agent {
label "emscripten"
}
steps {
script {
gitCheckout()
}
sh '''#!/bin/bash
source ~/emsdk/emsdk_env.sh
cd project/emscripten
make test
killall -9 python3
cd Build/Test
emrun --kill_start --kill_exit --browser="/usr/bin/firefox" --browser_args="--headless" boxedwine.html
'''
}
}
stage ('Test Linux (x64)') {
agent {
label "linux64"
}
steps {
script {
gitCheckout()
}
dir("project/linux") {
sh '''#!/bin/bash
make test || exit
./Build/Test/boxedwine || exit
make testMultiThreaded || exit
./Build/TestMultiThreaded/boxedwine
'''
}
}
}
stage ('Test Mac (ARMv8)') {
agent {
label "macArmv8"
}
steps {
script {
gitCheckout()
}
sh '''#!/bin/bash
cd project/mac-xcode
/bin/bash buildTest.sh || exit
bin/BoxedwineTest.app/Contents/MacOS/BoxedwineTest
'''
}
}
stage ('Test Linux (ARMv8)') {
agent {
label "linuxArm64"
}
steps {
script {
gitCheckout()
}
dir("project/linux") {
sh '''#!/bin/bash
make testMultiThreaded || exit
./Build/TestMultiThreaded/boxedwine
'''
}
}
}
stage ('Test Windows') {
agent {
label "windows"
}
steps {
script {
gitCheckout()
}
bat "\"${env.MSBUILD}\" \"project/msvc/BoxedWine/BoxedWine.sln\" /p:Configuration=Test;Platform=win32"
bat "project\\msvc\\BoxedWine\\Test\\BoxedWine.exe"
bat "\"${env.MSBUILD}\" \"project/msvc/BoxedWine/BoxedWine.sln\" /p:Configuration=Test;Platform=x64"
bat "project\\msvc\\BoxedWine\\x64\\Test\\BoxedWine.exe"
}
}
stage ('Test Windows ARM64') {
agent {
label "windowsARM64"
}
steps {
script {
gitCheckout()
}
bat "\"${env.MSBUILD}\" \"project/msvc/BoxedWine/BoxedWine.sln\" /p:Configuration=Test;Platform=ARM64"
bat "project\\msvc\\BoxedWine\\ARM64\\Test\\BoxedWine.exe"
}
}
}
}
stage ('Build') {
parallel {
stage ('Build Emscripten') {
agent {
label "emscripten"
}
steps {
script {
gitCheckout()
}
dir("project/emscripten") {
sh '''#!/bin/bash
source ~/emsdk/emsdk_env.sh
set -x
rm -rf Deploy
make
if [ ! -f "Build/Release/boxedwine.wasm" ]
then
echo "boxedwine.wasm DOES NOT exists."
exit 999
fi
mkdir -p Deploy/Web
cp Build/Release/boxedwine.html Deploy/Web
cp boxedwine.css Deploy/Web
cp boxedwine-shell.js Deploy/Web
cp Build/Release/boxedwine.js Deploy/Web
cp Build/Release/boxedwine.wasm Deploy/Web
cp /var/www/buildfiles/* Deploy/Web
'''
}
dir("project/emscripten") {
stash includes: 'Deploy/Web/*', name: 'web'
}
}
}
stage ('Build Linux (x64)') {
agent {
label "linux64"
}
steps {
script {
gitCheckout()
}
dir("project/linux") {
sh '''#!/bin/bash
rm Build/MultiThreaded/boxedwine
rm Build/Release/boxedwine
rm Build/Deploy/Linux64/boxedwine
make release
make multiThreaded
mkdir -p Build/Deploy/Linux64
mkdir -p Build/Deploy/Linux
if [ ! -f "Build/MultiThreaded/boxedwine" ]
then
echo "Build/MultiThreaded/boxedwine DOES NOT exists."
exit 999
fi
if [ ! -f "Build/Release/boxedwine" ]
then
echo "Build/Release/boxedwine DOES NOT exists."
exit 999
fi
cp Build/MultiThreaded/boxedwine Build/Deploy/Linux64/
cp Build/Release/boxedwine Build/Deploy/Linux/
'''
}
dir("project/linux/Build") {
stash includes: 'Deploy/Linux64/boxedwine', name: 'linux64'
stash includes: 'Deploy/Linux/boxedwine', name: 'linux'
}
}
}
stage ('Build Mac (ARMv8)') {
agent {
label "macArmv8"
}
steps {
script {
gitCheckout()
}
dir("project/mac-xcode") {
sh '''#!/bin/bash
rm -rf bin/Boxedwine.app
rm -rf Deploy/Mac/Boxedwine.app
mkdir -p Deploy/Mac
/bin/bash buildRelease.sh
if [ ! -d "bin/Boxedwine.app" ]
then
echo "bin/Boxedwine.app DOES NOT exists."
exit 999
fi
mv bin/Boxedwine.app/ Deploy/Mac/
'''
}
dir("project/mac-xcode") {
stash includes: 'Deploy/Mac/**', name: 'macArmv8'
}
}
}
stage ('Build Linux (ARMv8)') {
agent {
label "linuxArm64"
}
steps {
script {
gitCheckout()
}
dir("project/linux") {
sh '''#!/bin/bash
rm Build/MultiThreaded/boxedwine
rm Deploy/LinuxArm64/boxedwine
mkdir -p Deploy/LinuxArm64
make multiThreaded
if [ ! -f "Build/MultiThreaded/boxedwine" ]
then
echo "Build/MultiThreaded/boxedwine DOES NOT exists."
exit 999
fi
mv Build/MultiThreaded/boxedwine Deploy/LinuxArm64/
'''
}
dir("project/linux") {
stash includes: 'Deploy/LinuxArm64/boxedwine', name: 'linuxArm64'
}
}
}
stage ('Build Windows') {
agent {
label "windows"
}
steps {
script {
gitCheckout()
}
bat '''
IF EXIST "project\\msvc\\Boxedwine\\Release\\Boxedwine.exe" DEL "project\\msvc\\Boxedwine\\Release\\Boxedwine.exe"
IF EXIST "project\\msvc\\Boxedwine\\x64\\Release\\Boxedwine.exe" DEL "project\\msvc\\Boxedwine\\x64\\Release\\Boxedwine.exe"
IF NOT EXIST "project\\msvc\\Deploy\\Win32" mkdir "project\\msvc\\Deploy\\Win32"
if NOT EXIST "project\\msvc\\Deploy\\Win64" mkdir "project\\msvc\\Deploy\\Win64"
'''
bat "\"${env.MSBUILD}\" \"project/msvc/BoxedWine/BoxedWine.sln\" /p:Configuration=Release;Platform=win32"
bat "\"${env.MSBUILD}\" \"project/msvc/BoxedWine/BoxedWine.sln\" /p:Configuration=Release;Platform=x64"
bat '''
move project\\msvc\\Boxedwine\\Release\\Boxedwine.exe project\\msvc\\Deploy\\Win32\\
copy project\\msvc\\Deploy\\Win32\\Boxedwine.exe project\\msvc\\Deploy\\Win32\\Boxedwine_console.exe
editbin.exe /subsystem:console project\\msvc\\Deploy\\Win32\\Boxedwine_console.exe
move project\\msvc\\Boxedwine\\x64\\Release\\Boxedwine.exe project\\msvc\\Deploy\\Win64\\
copy project\\msvc\\Deploy\\Win64\\Boxedwine.exe project\\msvc\\Deploy\\Win64\\Boxedwine_console.exe
editbin.exe /subsystem:console project\\msvc\\Deploy\\Win64\\Boxedwine_console.exe
'''
dir("project/msvc") {
stash includes: 'Deploy/**/*', name: 'windows'
}
}
}
stage ('Build Windows ARM64') {
agent {
label "windowsARM64"
}
steps {
script {
gitCheckout()
}
bat '''
IF EXIST "project\\msvc\\Boxedwine\\ARM64\\Release\\Boxedwine.exe" DEL "project\\msvc\\Boxedwine\\ARM64\\Release\\Boxedwine.exe"
if NOT EXIST "project\\msvc\\Deploy\\WinARM64" mkdir "project\\msvc\\Deploy\\WinARM64"
'''
bat "\"${env.MSBUILD}\" \"project/msvc/BoxedWine/BoxedWine.sln\" /p:Configuration=Release;Platform=ARM64"
bat '''
move project\\msvc\\Boxedwine\\ARM64\\Release\\Boxedwine.exe project\\msvc\\Deploy\\WinARM64\\
'''
dir("project/msvc") {
stash includes: 'Deploy/**/*', name: 'windowsARM64'
}
}
}
}
}
stage ('Automation') {
parallel {
stage ('Linux (x64) Automation') {
agent {
label "linux64"
}
steps {
dir("project/linux") {
sh '''#!/bin/bash
wget -N --no-if-modified-since -np http://boxedwine.org/v2/automation3.zip
rm -rf automation
unzip automation3.zip
'''
}
dir("project/linux/automation") {
unstash "linux64"
unstash "linux"
retry(3) {
sh '''
java -jar bin/BoxedWineRunner.jar \"$WORKSPACE/project/linux/automation/fs/fs.zip\" \"$WORKSPACE/project/linux/automation/scripts/" \"$WORKSPACE/project/linux/automation/Deploy/Linux/boxedwine\" -nosound -novideo
'''
}
retry(3) {
sh '''
java -jar bin/BoxedWineRunner.jar \"$WORKSPACE/project/linux/automation/fs/fs.zip\" \"$WORKSPACE/project/linux/automation/scripts/" \"$WORKSPACE/project/linux/automation/Deploy/Linux64/boxedwine\" -nosound -novideo
'''
}
}
}
}
stage ('Mac Automation (ARMv8)') {
agent {
label "macArmv8"
}
steps {
script {
gitCheckout()
}
dir("project/mac-xcode") {
sh '''#!/bin/bash
curl -z automation3.zip http://boxedwine.org/v2/automation3.zip --output automation3.zip
rm -rf automation
unzip automation3.zip
rm -rf bin/BoxedwineAutomation.app
/bin/bash buildAutomation.sh
if [ ! -d "bin/BoxedwineAutomation.app" ]
then
echo "bin/BoxedwineAutomation.app DOES NOT exists."
exit 999
fi
'''
}
dir("project/mac-xcode/automation") {
retry(3) {
sh '''#!/bin/bash
java -jar bin/BoxedWineRunner.jar \"$WORKSPACE/project/mac-xcode/automation/fs/fs.zip\" \"$WORKSPACE/project/mac-xcode/automation/scripts/" \"$WORKSPACE/project/mac-xcode/bin/BoxedwineAutomation.app/Contents/MacOS/BoxedwineAutomation\" -nosound -novideo || exit 1
'''
}
}
}
}
stage ('Linux (ARMv8) Automation') {
agent {
label "linuxArm64"
}
steps {
dir("project/linux") {
sh '''#!/bin/bash
wget -N --no-if-modified-since -np http://boxedwine.org/v2/automation3.zip
rm -rf automation
unzip automation3.zip
'''
}
dir("project/linux/automation") {
unstash "linuxArm64"
retry(3) {
sh '''#!/bin/bash
java -jar bin/BoxedWineRunner.jar \"$WORKSPACE/project/linux/automation/fs/fs.zip\" \"$WORKSPACE/project/linux/automation/scripts/" \"$WORKSPACE/project/linux/automation/Deploy/LinuxArm64/boxedwine\" -nosound -novideo || exit 1
'''
}
}
}
}
stage ('Windows Automation') {
agent {
label "windows"
}
steps {
bat '''
wget -N --no-if-modified-since -np http://boxedwine.org/v2/automation3.zip
IF EXIST "automation" rmdir /q /s "automation"
unzip automation3.zip
'''
dir("automation") {
unstash "windows"
retry(3) {
bat '''
java -jar bin\\BoxedWineRunner.jar \"%WORKSPACE%\\automation\\fs\\fs.zip\" \"%WORKSPACE%\\automation\\scripts\" \"%WORKSPACE%\\automation\\Deploy\\Win32\\Boxedwine.exe\" -nosound -novideo
'''
}
retry(3) {
bat '''
java -jar bin\\BoxedWineRunner.jar \"%WORKSPACE%\\automation\\fs\\fs.zip\" \"%WORKSPACE%\\automation\\scripts\" \"%WORKSPACE%\\automation\\Deploy\\Win64\\Boxedwine.exe\" -nosound -novideo
'''
}
}
}
}
stage ('Windows ARM64 Automation') {
agent {
label "windowsARM64"
}
steps {
bat '''
wget -N --no-if-modified-since -np http://boxedwine.org/v2/automation3.zip
IF EXIST "automation" rmdir /q /s "automation"
tar -xf automation3.zip
'''
dir("automation") {
unstash "windowsARM64"
retry(3) {
bat '''
java -jar bin\\BoxedWineRunner.jar \"%WORKSPACE%\\automation\\fs\\fs.zip\" \"%WORKSPACE%\\automation\\scripts\" \"%WORKSPACE%\\automation\\Deploy\\WinARM64\\Boxedwine.exe\" -nosound -novideo
'''
}
}
}
}
}
}
}
post {
always {
node('linux64') {
dir("project/linux") {
sh '''#!/bin/bash
rm -rf Deploy
'''
unstash "web"
unstash "linux64"
unstash "macArmv8"
unstash "linuxArm64"
unstash "windows"
unstash "windowsARM64"
dir('Deploy') {
sh '''
echo "Linux64, LinuxArm64 and Win64 use the binary translator CPU core and are much faster. The others use the normal core or normal core + JIT." > readme.txt
zip -r build-$BUILD_NUMBER.zip *
'''
archiveArtifacts artifacts: "build-${env.BUILD_NUMBER}.zip", fingerprint: true, allowEmptyArchive: true
}
}
}
}
changed {
script {
if ("${env.BRANCH_NAME}" == 'master') {
emailext subject: '$DEFAULT_SUBJECT',
body: '$DEFAULT_CONTENT',
recipientProviders: [
[$class: 'CulpritsRecipientProvider'],
[$class: 'DevelopersRecipientProvider'],
[$class: 'RequesterRecipientProvider']
],
replyTo: '$DEFAULT_REPLYTO',
to: '$DEFAULT_RECIPIENTS'
}
}
}
success {
script {
emailext subject: '$DEFAULT_SUBJECT',
body: '$DEFAULT_CONTENT',
recipientProviders: [
[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']
],
replyTo: '$DEFAULT_REPLYTO'
}
}
failure {
script {
emailext subject: '$DEFAULT_SUBJECT',
body: '$DEFAULT_CONTENT',
recipientProviders: [
[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']
],
replyTo: '$DEFAULT_REPLYTO'
}
}
}
}