forked from feenkcom/gtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
957 lines (816 loc) · 30 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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
import hudson.tasks.test.AbstractTestResultAction
import hudson.model.Actionable
import hudson.tasks.junit.CaseResult
properties([
parameters([
choice(name: 'BUMP', choices: ['patch', 'minor', 'major'], description: 'What to bump when releasing'),
booleanParam(name: 'RUN_TESTS', defaultValue: true, description: 'Run tests during the build')
]),
buildDiscarder(logRotator(numToKeepStr: '50')),
disableConcurrentBuilds()
])
try {
onBuildStarted()
pipeline()
def currentResult = currentBuild.result ?: 'SUCCESS'
if (currentResult == 'SUCCESS') {
postSuccess()
}
} catch (e) {
echo "Caught exception: $e; currentBuild.result: ${currentBuild.result}"
def currentResult = currentBuild.result ?: 'FAILURE'
if (currentResult == 'FAILURE') {
postFailure(e)
}
// Since we're catching the exception in order to report on it,
// we need to re-throw it, to ensure that the build is marked as failed
throw e
} finally {
def currentResult = currentBuild.result ?: 'SUCCESS'
if (currentResult == 'UNSTABLE') {
postUnstable()
}
}
def pipeline() {
new GlamorousToolkit(this,
new Agent(Triplet.MacOS_Aarch64),
[
"BUILD_URL" : env.BUILD_URL,
"JOB_NAME" : env.JOB_NAME,
"BUILD_NUMBER": env.BUILD_NUMBER,
"FRESH_BUILD" : true,
"CLEAN_UP" : true
] + params).execute()
}
def postSuccess() {
tsum = getTestSummary()
slackSend(color: '#00FF00', message: "Successful <${env.BUILD_URL}|${env.JOB_NAME} [${env.BUILD_NUMBER}]>\n$tsum")
}
def postUnstable() {
tfailed = getFailedTests()
tsum = getTestSummary()
slackSend(color: '#FFFF00', message: "Unstable <${env.BUILD_URL}/testReport|${env.JOB_NAME} [${env.BUILD_NUMBER}]>\nTest Summary: $tsum\n$tfailed")
}
def postFailure(e) {
slackSend(color: '#FF0000', message: "Failed <${env.BUILD_URL}/consoleFull|${env.JOB_NAME} [${env.BUILD_NUMBER}]> due to $e")
}
def onBuildStarted() {
slackSend(color: '#FFFF00', message: ("Started <${env.BUILD_URL}|${env.JOB_NAME} [${env.BUILD_NUMBER}]>"))
}
/**
* An entrance point into the Jenkins build of the Glamorous Toolkit.
* Knows the build parameters and drives the high level stages of the build.
* Decides on which Jenkins nodes it should run the build, examples and packaging steps.
* @see Builder - which is responsible for building a tentative GlamorousToolkit image.
*/
class GlamorousToolkit {
static final RELEASER_FOLDER = "gt-releaser"
static final GTOOLKIT_FOLDER = "glamoroustoolkit"
static final EXAMPLES_FOLDER = "gt-examples"
static final LEPITER_WINDOWS = "C:/Users/Administrator/Documents/lepiter"
static final LEPITER_UNIX = "~/Documents/lepiter"
static final PHARO_IMAGE_URL = "https://dl.feenk.com/pharo/Pharo10-SNAPSHOT.build.538.sha.179ef65.arch.64bit.zip"
static final TENTATIVE_PACKAGE_WITHOUT_GT_WORLD = 'GlamorousToolkit-image-without-world.zip'
static final TENTATIVE_PACKAGE = 'GlamorousToolkit-tentative.zip'
static final TEST_OPTIONS = '--disable-deprecation-rewrites --skip-packages "GToolkit-Boxer" "Sparta-Cairo" "Sparta-Skia" "GToolkit-RemoteExamples-GemStone"'
static final RELEASE_PACKAGE_TEMPLATE = 'GlamorousToolkit-{{os}}-{{arch}}-v{{version}}.zip'
final Script script
Agent agent
final boolean runTests
final String bump
final boolean freshBuild
final boolean cleanUp
final String buildUrl
final String jobName
final int buildNumber
String releaserVersion
String installerVersion
String gtoolkitVersion
String gt4gemstoneCommitHash
String gt4remoteCommitHash
Map<String, String> artefacts
final ArrayList<AgentJob> jobs
GlamorousToolkit(Script script, Agent agent, Map params) {
this.script = script
this.agent = agent
this.runTests = params.RUN_TESTS
this.freshBuild = params.FRESH_BUILD
this.cleanUp = params.CLEAN_UP
this.bump = params.BUMP
this.buildUrl = params.BUILD_URL
this.jobName = params.JOB_NAME
this.buildNumber = params.BUILD_NUMBER.toInteger()
this.gtoolkitVersion = null
this.gt4gemstoneCommitHash = null
this.gt4remoteCommitHash = null
this.artefacts = [:]
jobs = [
new TestAndPackage(this, new Agent(Triplet.MacOS_Aarch64), Triplet.MacOS_Aarch64),
new TestAndPackage(this, new Agent(Triplet.MacOS_X86_64), Triplet.MacOS_X86_64),
new TestAndPackageWithGemstone(this, new Agent(Triplet.Linux_X86_64, "mickey-mouse"), Triplet.Linux_X86_64),
new TestAndPackage(this, new Agent(Triplet.Linux_Aarch64, "peter-pan"), Triplet.Linux_Aarch64),
new TestAndPackage(this, new Agent(Triplet.Windows_X86_64, "daffy-duck"), Triplet.Windows_X86_64)
]
}
void execute() {
script.node(agent.label()) {
build()
}
test_and_package()
script.node(agent.label()) {
release()
}
}
void build() {
script.checkout script.scm
read_tool_versions()
new Builder(this, agent).execute()
}
void test_and_package() {
def testers = [:]
for (x in jobs) {
def job = x
def shouldPropagate = true
if (job.agent.getHost() == Triplet.Linux_Aarch64) {
shouldPropagate = false
}
if (job.agent.getHost() == Triplet.MacOS_Aarch64) {
shouldPropagate = false
}
// Create a map to pass in to the 'parallel' step so we can fire all the builds at once
testers[job.agent] = {
try { job.execute() }
catch(e) {
if (shouldPropagate) { throw e }
}
}
}
script.parallel testers
}
void release() {
def currentResult = script.currentBuild.result ?: 'SUCCESS'
// we must not release if the build is not successful until this point
if (currentResult != 'SUCCESS') {
return;
}
script.stage("Release") {
doRelease()
}
}
void doRelease() {
def artefacts_to_release = ""
this.artefacts.each {
key, path ->
script.unstash "${key}"
script.echo "Unstashed ${key} as ${path}"
artefacts_to_release += "${path} "
}
// Remove the gt-extra folder so it does not influence the release.
agent.platform().delete_directory(script, "${RELEASER_FOLDER}/gt-extra")
download_releaser()
script.sshagent(credentials: ['jenkins-ubuntu-node-aliaksei-syrel']) {
agent.platform().exec(
script,
"./gt-installer",
"--verbose " +
"--workspace ${RELEASER_FOLDER} " +
"run-releaser " +
"--bump ${bump}")
}
script.withCredentials([script.string(credentialsId: 'githubrelease', variable: 'GITHUB_TOKEN')]) {
agent.platform().exec(script,
"./feenk-releaser",
"--owner feenkcom " +
"--repo gtoolkit " +
"--token GITHUB_TOKEN " +
"release " +
"--version ${gtoolkitVersion} " +
"--auto-accept " +
"--assets ${artefacts_to_release}")
}
script.sshagent(credentials: ['jenkins-ubuntu-node-aliaksei-syrel']) {
script.sh "chmod +x ./scripts/build/*.sh"
script.sh "./scripts/build/upload.sh"
}
script.withCredentials([script.sshUserPrivateKey(credentialsId: '31ee68a9-4d6c-48f3-9769-a2b8b50452b0', keyFileVariable: 'REMOTE_IDENTITY_FILE', passphraseVariable: '', usernameVariable: 'REMOTE_USERNAME')]) {
def remote = [:]
remote.name = 'deploy'
remote.host = 'sftp.feenk.com'
remote.user = script.env.REMOTE_USERNAME
remote.identityFile = script.env.REMOTE_IDENTITY_FILE
remote.allowAnyHosts = true
script.sshScript remote: remote, script: "scripts/build/update-latest-links.sh"
}
}
void stash_for_release(String path, String key = null) {
this.stash_internally(path, key)
this.artefacts[key ?: path] = path
}
void stash_internally(String path, String key = null) {
script.echo "About to stash ${path} as ${key ?: path}"
script.stash includes: path, name: key ?: path
script.echo "Stashed ${path} as ${key ?: path}"
}
/**
* Reads and remembers versions of the tools used during the build from .version files
*/
void read_tool_versions() {
script.stage('Read tool versions') {
this.releaserVersion = script.sh(
script: "cat feenk-releaser.version",
returnStdout: true
).trim()
this.installerVersion = script.sh(
script: "cat gtoolkit-builder.version",
returnStdout: true
).trim()
script.echo "Will install using gtoolkit-installer ${installerVersion}"
script.echo "Will release using feenk-releaser ${releaserVersion}"
script.echo "Will run tests: ${runTests}"
}
}
void download_releaser() {
agent.platform().download_executable(script, releaser_url(), "feenk-releaser")
}
String releaser_url() {
return "https://github.com/feenkcom/releaser-rs/releases/download/${releaserVersion}/feenk-releaser-${agent.host().toString()}"
}
}
class Builder extends AgentJob {
Builder(GlamorousToolkit build, Agent agent) {
super(build, agent)
}
@java.lang.Override
void execute() {
script.echo "Will build pre-release image on ${agent.label()}"
cleanUp()
load_latest_commit()
read_gtoolkit_versions()
package_image()
}
void load_latest_commit() {
script.stage('Load latest commit') {
download_installer()
build_without_gt_world()
on_commits_loaded()
}
}
void on_commits_loaded() {
def newCommitFiles = script.findFiles(glob: 'gt-releaser/newcommits*.txt')
for (int i = 0; i < newCommitFiles.size(); ++i) {
def new_commits = script.readFile(newCommitFiles[i].path)
script.slackSend(color: '#00FF00', message: "Commits from <${script.env.BUILD_URL}|${script.env.JOB_NAME} [${script.env.BUILD_NUMBER}]>:\n ${new_commits}")
}
}
void read_gtoolkit_versions() {
build.gtoolkitVersion = platform().exec_stdout(script,
"./gt-installer",
"--workspace ${GlamorousToolkit.RELEASER_FOLDER} print-gtoolkit-image-version")
build.gt4gemstoneCommitHash = platform().exec_stdout(script,
"git",
"rev-parse HEAD",
"${GlamorousToolkit.RELEASER_FOLDER}/pharo-local/iceberg/feenkcom/gt4gemstone")
build.gt4remoteCommitHash = platform().exec_stdout(script,
"git",
"rev-parse HEAD",
"${GlamorousToolkit.RELEASER_FOLDER}/pharo-local/iceberg/feenkcom/gtoolkit-remote")
script.echo "We expect to release gtoolkit ${build.gtoolkitVersion}"
script.echo "We expect to release gt4gemstone ${build.gt4gemstoneCommitHash}"
script.echo "We expect to release gtoolkit-remote ${build.gt4remoteCommitHash}"
}
void build_without_gt_world() {
if (!build.freshBuild) {
script.echo "Skipping the loading of the latest commit due to the non-fresh build"
return
}
/// the following loads glamorous toolkit without opening GT world
script.sshagent(credentials: ['jenkins-ubuntu-node-aliaksei-syrel']) {
platform().exec(
script,
"./gt-installer",
"--verbose " +
"--workspace ${GlamorousToolkit.RELEASER_FOLDER} " +
"release-build " +
"--loader cloner " +
"--image-url ${GlamorousToolkit.PHARO_IMAGE_URL} " +
"--bump ${build.bump} " +
"--no-gt-world")
}
}
void package_image() {
script.stage('Package image') {
// make a copy from RELEASER_FOLDER to the default folder
platform().exec(script, "./gt-installer", "--verbose --workspace ${GlamorousToolkit.RELEASER_FOLDER} copy-to")
// clean the ssh keys and remove iceberg repositories
platform().exec(script, "./gt-installer", "--verbose clean-up")
// package without gt-world
platform().exec(script, "./gt-installer", "--verbose package-tentative ${GlamorousToolkit.TENTATIVE_PACKAGE_WITHOUT_GT_WORLD}")
// open gt world
platform().exec(script, "./gt-installer", "--verbose start")
// package with gt-world opened, ready to run tests
platform().exec(script, "./gt-installer", "--verbose package-tentative ${GlamorousToolkit.TENTATIVE_PACKAGE}")
build.stash_for_release(GlamorousToolkit.TENTATIVE_PACKAGE_WITHOUT_GT_WORLD)
build.stash_internally(GlamorousToolkit.TENTATIVE_PACKAGE)
}
}
}
class TestAndPackage extends AgentJob {
final Triplet target
boolean runTests
TestAndPackage(GlamorousToolkit build, Agent agent, Triplet target) {
super(build, agent)
this.target = target
this.runTests = build.runTests
}
@NonCPS
TestAndPackage disable_tests() {
this.runTests = false
return this
}
@java.lang.Override
void execute() {
script.node(agent.label()) {
setup_node()
run_tests()
create_release_package()
}
}
void setup_node() {
configure_git()
// Only unpackage tentative when running on a different node
if (agent != build.agent) {
script.stage("Unpackage " + target.short_label()) {
cleanUp()
unpackage_tentative()
}
}
}
void unpackage_tentative() {
script.unstash "${GlamorousToolkit.TENTATIVE_PACKAGE}"
download_installer()
platform().exec(script, "./gt-installer", "--verbose unpackage-tentative ${GlamorousToolkit.TENTATIVE_PACKAGE}")
}
void run_tests() {
if (runTests) {
script.stage("Test " + target.short_label()) {
script.timeout(time: 45, unit: 'MINUTES') {
prepare_for_testing()
run_gtoolkit_examples()
run_extra_examples()
run_pharo_tests()
report_test_results()
}
}
}
}
void prepare_for_testing() {
// make a copy from GTOOLKIT_FOLDER to the EXAMPLES_FOLDER
platform().exec(script, "./gt-installer", "--verbose copy-to ${GlamorousToolkit.EXAMPLES_FOLDER}")
// On Windows we must disable the firewall for the exe, otherwise there will be no internet access when running examples / tests
if (platform() == Platform.Windows) {
script.powershell "netsh advfirewall firewall add rule name='Gt Examples cli exe' dir=in action=allow program='${GlamorousToolkit.EXAMPLES_FOLDER}\\bin\\GlamorousToolkit-cli.exe' enable=yes"
}
}
void run_gtoolkit_examples() {
delete_lepiter_directory()
platform().exec_ui(script, "./gt-installer", "--verbose --workspace ${GlamorousToolkit.EXAMPLES_FOLDER} test ${GlamorousToolkit.TEST_OPTIONS}")
}
void run_extra_examples() {
}
/**
* Runs Pharo TestCase in a few selected packages to verify that the VM works good enough to support base Pharo features.
*/
void run_pharo_tests() {
delete_lepiter_directory()
platform().exec_ui(script, "./gt-installer", "--verbose --workspace ${GlamorousToolkit.EXAMPLES_FOLDER} test --packages 'Zinc.*' 'Zodiac.*'")
}
/**
* Analyses and reports the test results.
* Should be executed after running all examples and tests.
*/
void report_test_results() {
script.junit "${GlamorousToolkit.EXAMPLES_FOLDER}/*.xml"
}
/**
* Create a package ready for release
*/
void create_release_package() {
def currentResult = script.currentBuild.result ?: 'SUCCESS'
// we must not package the build is not successful until this point
if (currentResult != 'SUCCESS') {
return;
}
script.stage("Package " + target.short_label()) {
def release_package = platform().exec_stdout(script, "./gt-installer", "--verbose package-release \"${GlamorousToolkit.RELEASE_PACKAGE_TEMPLATE}\"")
script.echo "Created release package ${release_package}"
sign_package(release_package)
build.stash_for_release(release_package, target.toString())
}
}
/**
* Sign the prepared package.
* Only supported when targeting MacOS.
*/
void sign_package(String release_package) {
if (target.platform() != Platform.MacOS) {
return
}
def target_arch = target.architecture.toString()
def id_arch = ""
switch (target_arch) {
case "aarch64":
id_arch = "aarch64"
break
case "x86_64":
id_arch = "x86-64"
break
default:
script.error "Unsupported architecture: ${target_arch}"
break
}
script.withCredentials([script.string(credentialsId: 'notarizepassword-manager', variable: 'APPLE_PASSWORD')]) {
script.sh """
set +x
xcrun altool \
-t osx \
-f ${release_package} \
-itc_provider "77664ZXL29" \
--primary-bundle-id "com.feenk.gtoolkit.darwin-apple-${id_arch}" \
--notarize-app \
--verbose \
--username "[email protected]" \
--password \$APPLE_PASSWORD \
"""
}
script.echo "Signed release package ${release_package}"
}
}
class TestAndPackageWithGemstone extends TestAndPackage {
static final GEMSTONE_FOLDER = "remote-gemstone"
TestAndPackageWithGemstone(GlamorousToolkit build, Agent agent, Triplet target) {
super(build, agent, target)
if (agent.host() != Triplet.Linux_X86_64) {
script.error "Gemstone build is only supported on x86_64 linux"
}
}
@Override
void prepare_for_testing() {
super.prepare_for_testing()
script.sh """
cd ${GlamorousToolkit.EXAMPLES_FOLDER}
rm -rf gt4gemstone
git clone https://github.com/feenkcom/gt4gemstone.git
cd gt4gemstone
git checkout ${build.gt4gemstoneCommitHash}
"""
script.sh """
cd ${GlamorousToolkit.EXAMPLES_FOLDER}
rm -rf gtoolkit-remote
git clone https://github.com/feenkcom/gtoolkit-remote.git
cd gtoolkit-remote
git checkout ${build.gt4remoteCommitHash}
"""
script.sh """
cd ${GlamorousToolkit.EXAMPLES_FOLDER}
rm -rf Sparkle
git clone https://github.com/feenkcom/Sparkle.git
"""
script.sh """
cd ${GlamorousToolkit.EXAMPLES_FOLDER}
chmod +x gt4gemstone/scripts/*.sh
chmod +x gt4gemstone/scripts/release/*.sh
chmod +x gtoolkit-remote/scripts/*.sh
"""
}
@Override
void run_extra_examples() {
delete_lepiter_directory()
run_gemstone_examples()
}
void run_gemstone_examples() {
script.withEnv([
"GEMSTONE_WORKSPACE=${script.env.WORKSPACE}/${GlamorousToolkit.EXAMPLES_FOLDER}/${GEMSTONE_FOLDER}",
"GT4GEMSTONE_VERSION=${build.gtoolkitVersion}",
"RELEASED_PACKAGE_GEMSTONE_NAME=${gemstone_package_name()}"]) {
// Run the GemStone remote examples.
// Relies on the Linux Examples stage configuring EXAMPLES_FOLDER correctly.
script.sh """
cd ${GlamorousToolkit.EXAMPLES_FOLDER}
./gt4gemstone/scripts/jenkins_preconfigure_gemstone.sh
./gt4gemstone/scripts/run-remote-gemstone-examples.sh
"""
}
}
String gemstone_package_name() {
return "gt4gemstone-3.7"
}
@Override
void create_release_package() {
super.create_release_package()
// Gemstone package is prepared during examples running step
if (!build.runTests) {
return
}
def gemstone_workspace = "${GlamorousToolkit.EXAMPLES_FOLDER}/${GEMSTONE_FOLDER}"
def gemstone_package = "${gemstone_package_name()}.zip"
script.sh "cp -rf ${gemstone_workspace}/${gemstone_package} ."
build.stash_for_release(gemstone_package, 'GemStone')
}
}
/**
* Represents a Job that is assigned to be run on a specific agent.
* @see Agent
*/
abstract class AgentJob {
final GlamorousToolkit build
final Script script
// agent on which to build the image
final Agent agent
AgentJob(GlamorousToolkit build, Agent agent) {
this.build = build
this.script = build.script
this.agent = agent
}
void cleanUp() {
doCleanUp()
}
void doCleanUp() {
if (build.cleanUp && build.freshBuild) {
platform().delete_directory(script, GlamorousToolkit.RELEASER_FOLDER)
}
platform().delete_directory(script, GlamorousToolkit.GTOOLKIT_FOLDER)
platform().delete_directory(script, GlamorousToolkit.EXAMPLES_FOLDER)
delete_lepiter_directory()
if (build.cleanUp && build.freshBuild && script.fileExists('.git')) {
platform().shell(script, "git clean -fdx")
}
else {
script.echo ".git does not exist, no need to clean"
}
}
void delete_lepiter_directory() {
platform().delete_directory(script, platform().lepiter_directory())
}
abstract void execute()
void configure_git() {
platform().shell(script, 'git config --global user.name "Jenkins"')
platform().shell(script, 'git config --global user.email "[email protected]"')
}
void download_installer() {
platform().download_executable(script, installer_url(), "gt-installer")
}
String installer_url() {
return "https://github.com/feenkcom/gtoolkit-maestro-rs/releases/download/${build.installerVersion}/gt-installer-${agent.host().toString()}"
}
Platform platform() {
return agent.platform()
}
}
class Agent {
final Triplet host
final String tag
Agent(Triplet host) {
this(host, null)
}
Agent(Triplet host, String tag) {
this.host = host
this.tag = tag
}
@NonCPS
Triplet host() {
return host
}
@NonCPS
Platform platform() {
return host.platform()
}
@java.lang.Override
@NonCPS
String toString() {
return "Agent (" + label() + ")"
}
@NonCPS
String label() {
String host_string = host.toString()
if (tag == null) {
return host_string
} else {
return host_string + "-" + tag
}
}
@Override
@NonCPS
boolean equals(object) {
if (getClass() != object.getClass()) return false
Agent agent = (Agent) object
if (host != agent.host) return false
if (tag != agent.tag) return false
return true
}
@Override
@NonCPS
int hashCode() {
int result = 7
result = 31 * result + host.hashCode()
result = 31 * result + (tag != null ? tag.hashCode() : 0)
return result
}
}
enum Triplet {
MacOS_Aarch64(Platform.MacOS, Architecture.Aarch64),
MacOS_X86_64(Platform.MacOS, Architecture.X86_64),
Linux_Aarch64(Platform.Linux, Architecture.Aarch64),
Linux_X86_64(Platform.Linux, Architecture.X86_64),
Windows_Aarch64(Platform.Windows, Architecture.Aarch64),
Windows_X86_64(Platform.Windows, Architecture.X86_64)
final Platform platform
final Architecture architecture
Triplet(Platform platform, Architecture architecture) {
this.platform = platform
this.architecture = architecture
}
@NonCPS
Platform platform() {
return this.platform
}
@Override
@NonCPS
String toString() {
this.architecture.toString() + "-" + this.platform.toString()
}
@NonCPS
String short_label() {
this.platform.short_label() + " " + this.architecture.short_label()
}
}
/**
* Encapsulates platform specific aspects of the build process
*/
enum Platform {
Windows("pc-windows-msvc"),
MacOS("apple-darwin"),
Linux("unknown-linux-gnu")
final String value
Platform(String value) {
this.value = value
}
@Override
@NonCPS
String toString() {
this.value
}
@NonCPS
String short_label() {
switch (this) {
case Windows:
return "Windows"
break
case MacOS:
return "MacOS"
break
case Linux:
return "Linux"
break
}
}
/**
* Platform specific Lepiter directory
* @return - a String path to the lepiter directory depending on the platform
* where the script is executed
*/
String lepiter_directory() {
if (this == Windows) {
GlamorousToolkit.LEPITER_WINDOWS
} else {
GlamorousToolkit.LEPITER_UNIX
}
}
void download_executable(Script script, String url, String executable) {
if (this == Windows) {
download_file(script, url + ".exe", executable + ".exe")
} else {
download_file(script, url, executable)
script.sh "chmod +x ${executable}"
}
}
void download_file(Script script, String url, String output) {
delete_file(script, output)
if (this == Windows) {
script.powershell "curl -o ${output} ${url}"
} else {
script.sh "curl -o ${output} -LsS ${url}"
}
}
void delete_directory(Script script, String directory) {
if (this == Windows) {
script.powershell "Remove-Item ${directory} -Recurse -ErrorAction Ignore"
} else {
script.sh("""
if [ -d ${directory} ]
then
echo "Granting write permission for cleanup: ${directory}"
chmod -R u+w ${directory}
fi
rm -rf ${directory}
""")
}
}
void delete_file(Script script, String file) {
if (this == Windows) {
script.powershell "Remove-Item ${file} -ErrorAction Ignore"
} else {
script.sh "rm -rf ${file}"
}
}
void exec(Script script, String executable, String arguments) {
if (this == Windows) {
shell(script, "${executable}.exe $arguments")
} else {
shell(script, "${executable} $arguments")
}
}
void exec_ui(Script script, String executable, String arguments) {
if (this == Windows) {
shell(script, "${executable}.exe $arguments")
} else if (this == MacOS) {
shell(script, "${executable} $arguments")
} else {
shell(script, "xvfb-run -a ./${executable} $arguments")
}
}
String exec_stdout(Script script, String executable, String arguments, String path = null) {
def exec_path = path ?: "."
def output = ""
if (this == Windows) {
output = script.powershell script: """
cd ${exec_path}; `
${executable}.exe ${arguments} """, returnStdout: true
} else {
output = script.sh script: """
cd ${exec_path} && \
${executable} ${arguments} """, returnStdout: true
}
return output.trim()
}
void shell(Script script, String command) {
if (this == Windows) {
script.powershell "${command}"
} else {
script.sh "${command}"
}
}
}
enum Architecture {
Aarch64("aarch64"),
X86_64("x86_64")
final String value
Architecture(String value) {
this.value = value
}
@NonCPS
String short_label() {
switch (this) {
case Aarch64:
return "Arm64"
break
case X86_64:
return "x86_64"
break
}
}
@Override
@NonCPS
String toString() {
this.value
}
}
@NonCPS
String getFailedTests() {
def testResultAction = currentBuild.rawBuild.getAction(AbstractTestResultAction.class)
def failedTestsString = "```"
if (testResultAction != null) {
def failedTests = testResultAction.getFailedTests()
if (failedTests.size() > 9) {
failedTests = failedTests.subList(0, 8)
}
for (CaseResult cr : failedTests) {
failedTestsString = failedTestsString + "${cr.getFullDisplayName()}:\n${cr.getErrorDetails()}\n\n"
}
failedTestsString = failedTestsString + "```"
}
return failedTestsString
}
@NonCPS
String getTestSummary() {
def testResultAction = currentBuild.rawBuild.getAction(AbstractTestResultAction.class)
def summary = ""
if (testResultAction != null) {
total = testResultAction.getTotalCount()
failed = testResultAction.getFailCount()
summary = "Passed: " + (total - failed)
summary = summary + (", Failed: " + failed)
} else {
summary = "No tests found"
}
return summary
}