forked from adoptium/ci-jenkins-pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_regeneration.groovy
811 lines (703 loc) · 33.4 KB
/
config_regeneration.groovy
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
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import common.IndividualBuildConfig
import common.RepoHandler
import groovy.json.JsonSlurper
import groovy.json.JsonOutput
import java.util.Base64
/**
This file is a job that regenerates all of the build configurations in pipelines/build/jobs/configurations/jdk*_pipeline_config.groovy. This ensures that race conditions are not encountered when running concurrent pipeline builds.
1) Its called from jdk<version>_regeneration_pipeline.groovy
2) Attempts to create downstream job dsl's for each pipeline job configuration
*/
class Regeneration implements Serializable {
private final String javaVersion
private final Map<String, Map<String, ?>> buildConfigurations
private final Map<String, ?> targetConfigurations
private final Map<String, ?> DEFAULTS_JSON
private final Map<String, ?> ADOPT_DEFAULTS_JSON
private final Map<String, ?> excludedBuilds
private Integer sleepTime
private final currentBuild
private final context
private final jobRootDir
private final gitRemoteConfigs
private final gitBranch
private final jobTemplatePath
private final baseFilePath
private final scriptPath
private final jenkinsBuildRoot
private final jenkinsCreds
private final checkoutCreds
private final jobType
private String javaToBuild
private final List<String> defaultTestList = ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf']
private final String EXCLUDED_CONST = 'EXCLUDED'
/*
Constructor
*/
public Regeneration(
String javaVersion,
Map<String, Map<String, ?>> buildConfigurations,
Map<String, ?> targetConfigurations,
Map<String, ?> DEFAULTS_JSON,
Map<String, ?> ADOPT_DEFAULTS_JSON,
Map<String, ?> excludedBuilds,
Integer sleepTime,
currentBuild,
context,
String jobRootDir,
Map gitRemoteConfigs,
String gitBranch,
String jobTemplatePath,
String baseFilePath,
String scriptPath,
String jenkinsBuildRoot,
String jenkinsCreds,
String checkoutCreds,
String jobType
) {
this.javaVersion = javaVersion
this.buildConfigurations = buildConfigurations
this.targetConfigurations = targetConfigurations
this.DEFAULTS_JSON = DEFAULTS_JSON
this.ADOPT_DEFAULTS_JSON = ADOPT_DEFAULTS_JSON
this.excludedBuilds = excludedBuilds
this.sleepTime = sleepTime
this.currentBuild = currentBuild
this.context = context
this.jobRootDir = jobRootDir
this.gitRemoteConfigs = gitRemoteConfigs
this.gitBranch = gitBranch
this.jobTemplatePath = jobTemplatePath
this.baseFilePath = baseFilePath
this.scriptPath = scriptPath
this.jenkinsBuildRoot = jenkinsBuildRoot
this.jenkinsCreds = jenkinsCreds
this.checkoutCreds = checkoutCreds
this.jobType = jobType
}
/*
* Get configure args from jdk*_pipeline_config.groovy. Used when creating the IndividualBuildConfig.
* @param configuration
* @param variant
*/
static String getConfigureArgs(Map<String, ?> configuration, String variant) {
def configureArgs = ''
if (configuration.containsKey('configureArgs')) {
def configConfigureArgs
if (isMap(configuration.configureArgs)) {
configConfigureArgs = (configuration.configureArgs as Map<String, ?>).get(variant)
} else {
configConfigureArgs = configuration.configureArgs
}
if (configConfigureArgs != null) {
configureArgs += configConfigureArgs
}
}
return configureArgs
}
def getArchLabel(Map<String, ?> configuration, String variant) {
// Default to arch
def archLabelVal = configuration.arch
// Workaround for cross compiled architectures
if (configuration.containsKey('crossCompile')) {
def configArchLabelVal
if (isMap(configuration.crossCompile)) {
configArchLabelVal = (configuration.crossCompile as Map<String, ?>).get(variant)
} else {
configArchLabelVal = configuration.crossCompile
}
if (configArchLabelVal != null) {
archLabelVal = configArchLabelVal
}
}
return archLabelVal
}
/*
Retrieves the dockerImage attribute from the build configurations.
This specifies the DockerHub org and image to pull or build in case we don't have one stored in this repository.
If this isn't specified, the openjdk_build_pipeline.groovy will assume we are not building the jdk inside of a container.
*/
def getDockerImage(Map<String, ?> configuration, String variant) {
def dockerImageValue = ''
if (configuration.containsKey('dockerImage')) {
if (isMap(configuration.dockerImage)) {
dockerImageValue = (configuration.dockerImage as Map<String, ?>).get(variant)
} else {
dockerImageValue = configuration.dockerImage
}
}
return dockerImageValue
}
def getDockerArgs(Map<String, ?> configuration, String variant) {
def dockerArgsValue = ''
if (configuration.containsKey('dockerArgs')) {
if (isMap(configuration.dockerArgs)) {
dockerArgsValue = (configuration.dockerArgs as Map<String, ?>).get(variant)
} else {
dockerArgsValue = configuration.dockerArgs
}
}
return dockerArgsValue
}
/*
Retrieves the dockerFile attribute from the build configurations.
This specifies the path of the dockerFile relative to this repository.
If a dockerFile is not specified, the openjdk_build_pipeline.groovy will attempt to pull one from DockerHub.
*/
def getDockerFile(Map<String, ?> configuration, String variant) {
def dockerFileValue = ''
if (configuration.containsKey('dockerFile')) {
if (isMap(configuration.dockerFile)) {
dockerFileValue = (configuration.dockerFile as Map<String, ?>).get(variant)
} else {
dockerFileValue = configuration.dockerFile
}
}
return dockerFileValue
}
/*
Retrieves the dockerNode attribute from the build configurations.
This determines what the additional label will be if we are building the jdk in a docker container.
Defaults to &&dockerBuild in openjdk_build_pipeline.groovy if it's not supplied in the build configuration.
*/
def getDockerNode(Map<String, ?> configuration, String variant) {
def dockerNodeValue = ''
if (configuration.containsKey('dockerNode')) {
if (isMap(configuration.dockerNode)) {
dockerNodeValue = (configuration.dockerNode as Map<String, ?>).get(variant)
} else {
dockerNodeValue = configuration.dockerNode
}
}
return dockerNodeValue
}
/*
Retrieves the dockerRegistry attribute from the build configurations.
This is used to pull dockerImage from a custom registry.
If not specified, defaults to '' which will be DockerHub.
*/
def getDockerRegistry(Map<String, ?> configuration, String variant) {
def dockerRegistryValue = ''
if (configuration.containsKey('dockerRegistry')) {
if (isMap(configuration.dockerRegistry)) {
dockerRegistryValue = (configuration.dockerRegistry as Map<String, ?>).get(variant)
} else {
dockerRegistryValue = configuration.dockerRegistry
}
}
return dockerRegistryValue
}
/*
Retrieves the dockerCredential attribute from the build configurations.
If used, this will wrap the docker pull with a docker login.
*/
def getDockerCredential(Map<String, ?> configuration, String variant) {
def dockerCredentialValue = ''
if (configuration.containsKey('dockerCredential')) {
if (isMap(configuration.dockerCredential)) {
dockerCredentialValue = (configuration.dockerCredential as Map<String, ?>).get(variant)
} else {
dockerCredentialValue = configuration.dockerCredential
}
}
return dockerCredentialValue
}
/*
Retrieves the platformSpecificConfigPath from the build configurations.
This determines where the location of the operating system setup files are in comparison to the repository root. The param is formatted like this because we need to download and source the file from the bash scripts.
*/
def getPlatformSpecificConfigPath(Map<String, ?> configuration) {
def splitUserUrl = ((String)DEFAULTS_JSON['repository']['build_url']) - ('.git').split('/')
// e.g. https://github.com/adoptium/temurin-build.git will produce adoptium/temurin-build
String userOrgRepo = "${splitUserUrl[splitUserUrl.size() - 2]}/${splitUserUrl[splitUserUrl.size() - 1]}"
// e.g. adoptium/temurin-build/master/build-farm/platform-specific-configurations
def buildRef = configuration.buildRef ?: DEFAULTS_JSON['repository']['build_branch']
def platformSpecificConfigPath = "${userOrgRepo}/${buildRef}/${DEFAULTS_JSON['configDirectories']['platform']}"
if (configuration.containsKey('platformSpecificConfigPath')) {
// e.g. adoptium/temurin-build/master/build-farm/platform-specific-configurations.linux.sh
platformSpecificConfigPath = "${userOrgRepo}/${buildRef}/${configuration.platformSpecificConfigPath}"
}
return platformSpecificConfigPath
}
/**
* Builds up a node param string that defines what nodes are eligible to run the given job. Used as a placeholder since the pipelines overwrite this.
* @param configuration
* @param variant
* @return
*/
def formAdditionalBuildNodeLabels(Map<String, ?> configuration, String variant) {
def buildTag = 'build'
def labels = "${buildTag}"
if (configuration.containsKey('additionalNodeLabels')) {
def additionalNodeLabels
if (isMap(configuration.additionalNodeLabels)) {
additionalNodeLabels = (configuration.additionalNodeLabels as Map<String, ?>).get(variant)
} else {
additionalNodeLabels = configuration.additionalNodeLabels
}
if (additionalNodeLabels != null) {
labels = "${additionalNodeLabels}&&${labels}"
}
}
return labels
}
/**
* Builds up additional test labels
* @param configuration
* @param variant
* @return
*/
def formAdditionalTestLabels(Map<String, ?> configuration, String variant) {
def labels = ''
if (configuration.containsKey('additionalTestLabels')) {
def additionalTestLabels
if (isMap(configuration.additionalTestLabels)) {
additionalTestLabels = (configuration.additionalTestLabels as Map<String, ?>).get(variant)
} else {
additionalTestLabels = configuration.additionalTestLabels
}
if (additionalTestLabels != null) {
labels = "${additionalTestLabels}"
}
}
return labels
}
/*
* Get build args from jdk*_pipeline_config.groovy. Used when creating the IndividualBuildConfig.
* @param configuration
* @param variant
*/
String getBuildArgs(Map<String, ?> configuration, variant) {
if (configuration.containsKey('buildArgs')) {
if (isMap(configuration.buildArgs)) {
Map<String, ?> buildArgs = configuration.buildArgs as Map<String, ?>
if (buildArgs.containsKey(variant)) {
return buildArgs.get(variant)
}
} else {
return configuration.buildArgs
}
}
return ''
}
/*
* Get reproduciableCompare flag from jdk*_pipeline_config.groovy. Used when creating the IndividualBuildConfig.
* @param configuration
* @param variant
*/
Boolean isEnableReproducibleCompare(Map<String, ?> configuration, String variant) {
Boolean enableReproducibleCompare = DEFAULTS_JSON['testDetails']['enableReproducibleCompare'] as Boolean
if (configuration.containsKey('reproducibleCompare')) {
def reproducibleCompare
if (isMap(configuration.reproducibleCompare)) {
reproducibleCompare = (configuration.reproducibleCompare as Map).get(variant)
} else {
reproducibleCompare = configuration.reproducibleCompare
}
if (reproducibleCompare != null) {
enableReproducibleCompare = reproducibleCompare
}
}
return enableReproducibleCompare
}
/*
* Get the list of tests from jdk*_pipeline_config.groovy. Used when creating the IndividualBuildConfig. Used as a placeholder since the pipelines overwrite this.
* @param configuration
*/
List<String> getTestList(Map<String, ?> configuration) {
List<String> testList = []
if (configuration.containsKey('test') && configuration.get('test')) {
if (isMap(configuration.test)) {
testList = (configuration.test as Map).get('nightly') as List<String> // no need to check for release
}
testList = defaultTestList
}
testList.unique()
return testList
}
/*
* Get the list of tests to dynamically run parallel builds from the build configurations. Used as a placeholder since the pipelines overwrite this
* @param configuration
*/
Map<String, ?> getDynamicParams() {
List<String> testLists = DEFAULTS_JSON['testDetails']['defaultDynamicParas']['testLists']
List<String> numMachines = DEFAULTS_JSON['testDetails']['defaultDynamicParas']['numMachines']
return ['testLists': testLists, 'numMachines': numMachines]
}
/*
* Checks if the platform/arch/variant is in the EXCLUDES_LIST Parameter.
* @param configuration
* @param variant
*/
def overridePlatform(Map<String, ?> configuration, String variant) {
Boolean overridePlatform = false
if (excludedBuilds == [:]) {
return overridePlatform
}
String stringArch = configuration.arch as String
String stringOs = configuration.os as String
String estimatedKey = stringArch + stringOs.capitalize()
if (excludedBuilds.containsKey(estimatedKey)) {
if (excludedBuilds[estimatedKey].contains(variant)) {
overridePlatform = true
}
}
return overridePlatform
}
/*
* Create IndividualBuildConfig for jobDsl. Used as a placeholder since the pipelines overwrite this.
* @param platformConfig
* @param variant
* @param javaToBuild
*/
IndividualBuildConfig buildConfiguration(Map<String, ?> platformConfig, String variant, String javaToBuild) {
try {
// Check if it's in the excludes list
if (overridePlatform(platformConfig, variant)) {
context.println "[INFO] Excluding $platformConfig.os: $variant from $javaToBuild regeneration due to it being in the EXCLUDES_LIST..."
return EXCLUDED_CONST
}
def additionalNodeLabels = formAdditionalBuildNodeLabels(platformConfig, variant)
def additionalTestLabels = formAdditionalTestLabels(platformConfig, variant)
def archLabel = getArchLabel(platformConfig, variant)
def dockerImage = getDockerImage(platformConfig, variant)
def dockerArgs = getDockerArgs(platformConfig, variant)
def dockerFile = getDockerFile(platformConfig, variant)
def dockerNode = getDockerNode(platformConfig, variant)
def dockerRegistry = getDockerRegistry(platformConfig, variant)
def dockerCredential = getDockerCredential(platformConfig, variant)
def platformSpecificConfigPath = getPlatformSpecificConfigPath(platformConfig)
def buildArgs = getBuildArgs(platformConfig, variant)
def testList = getTestList(platformConfig)
def dynamicList = getDynamicParams().get('testLists')
def numMachines = getDynamicParams().get('numMachines')
def enableReproducibleCompare = isEnableReproducibleCompare(platformConfig, variant)
return new IndividualBuildConfig( // final build config
JAVA_TO_BUILD: javaToBuild,
ARCHITECTURE: platformConfig.arch as String,
TARGET_OS: platformConfig.os as String,
VARIANT: variant,
TEST_LIST: testList,
DYNAMIC_LIST: dynamicList,
NUM_MACHINES: numMachines,
SCM_REF: '',
BUILD_REF: '',
CI_REF: '',
HELPER_REF: '',
AQA_REF: '',
AQA_AUTO_GEN: false,
BUILD_ARGS: buildArgs,
NODE_LABEL: "${additionalNodeLabels}&&${platformConfig.os}&&${archLabel}",
ADDITIONAL_TEST_LABEL: "${additionalTestLabels}",
KEEP_TEST_REPORTDIR: false,
ACTIVE_NODE_TIMEOUT: '',
CODEBUILD: platformConfig.codebuild as Boolean,
DOCKER_IMAGE: dockerImage,
DOCKER_ARGS: dockerArgs,
DOCKER_FILE: dockerFile,
DOCKER_NODE: dockerNode,
DOCKER_REGISTRY: dockerRegistry,
DOCKER_CREDENTIAL: dockerCredential,
PLATFORM_CONFIG_LOCATION: platformSpecificConfigPath,
CONFIGURE_ARGS: getConfigureArgs(platformConfig, variant),
OVERRIDE_FILE_NAME_VERSION: '',
USE_ADOPT_SHELL_SCRIPTS: true,
ADDITIONAL_FILE_NAME_TAG: platformConfig.additionalFileNameTag as String,
JDK_BOOT_VERSION: platformConfig.bootJDK as String,
RELEASE: false,
WEEKLY: false,
PUBLISH_NAME: '',
ADOPT_BUILD_NUMBER: '',
ENABLE_REPRODUCIBLE_COMPARE: enableReproducibleCompare,
ENABLE_TESTS: DEFAULTS_JSON['testDetails']['enableTests'] as Boolean,
ENABLE_TESTDYNAMICPARALLEL: DEFAULTS_JSON['testDetails']['enableTestDynamicParallel'] as Boolean,
ENABLE_INSTALLERS: true,
ENABLE_SIGNER: true,
CLEAN_WORKSPACE: true,
CLEAN_WORKSPACE_AFTER: true,
CLEAN_WORKSPACE_BUILD_OUTPUT_ONLY_AFTER: false
)
} catch (Exception e) {
throw new Exception("[ERROR] Failed to create IndividualBuildConfig for platformConfig: ${platformConfig}.\n${e}")
}
}
/**
* Checks if the parameter is a map
* @param possibleMap
*/
static isMap(possibleMap) {
return Map.isInstance(possibleMap)
}
/**
* Generates a job from template at `create_job_from_template.groovy`. This is what creates the job dsl and "regenerates" the job.
* @param jobName
* @param jobFolder
* @param config
*/
def createJob(jobName, jobFolder, IndividualBuildConfig config) {
Map<String, ?> params = config.toMap().clone() as Map
params.put('JOB_NAME', jobName)
params.put('JOB_FOLDER', jobFolder)
params.put('VARIANT', config.VARIANT)
params.put('SCRIPT_PATH', scriptPath)
params.put('GIT_URL', gitRemoteConfigs['url'])
params.put('GIT_BRANCH', gitBranch)
// We have to use JsonSlurpers throughout the code for instantiating maps for consistancy and parsing reasons
Map userRemoteConfigs = new JsonSlurper().parseText('{"branch" : "", "remotes": ""}') as Map
userRemoteConfigs.branch = gitBranch
userRemoteConfigs.remotes = gitRemoteConfigs
params.put('USER_REMOTE_CONFIGS', JsonOutput.prettyPrint(JsonOutput.toJson(userRemoteConfigs)))
def repoHandler = new RepoHandler(userRemoteConfigs)
repoHandler.setUserDefaultsJson(context, DEFAULTS_JSON)
params.put('DEFAULTS_JSON', JsonOutput.prettyPrint(JsonOutput.toJson(DEFAULTS_JSON)))
params.put('ADOPT_DEFAULTS_JSON', JsonOutput.prettyPrint(JsonOutput.toJson(ADOPT_DEFAULTS_JSON)))
params.put('BUILD_CONFIG', config.toJson())
if (baseFilePath != DEFAULTS_JSON['baseFileDirectories']['downstream']) {
params.put('CUSTOM_BASEFILE_LOCATION', baseFilePath)
}
// Pass in checkout creds if needs be
if (checkoutCreds != '') {
params.put('CHECKOUT_CREDENTIALS', checkoutCreds)
} else {
params.put('CHECKOUT_CREDENTIALS', '')
}
// Make sure the dsl knows if we're building inside the pr tester
if (jobType == "pr-tester") {
params.put('PR_BUILDER', true)
}
// Makre sure the dsl knows if we are building for release job which checkout by a tag not branch
if (jobType == "release") {
params.put('CHECKOUT_AS_TAG', true) // in dsl, we convert GIT_BRANCH to a tag then checkout
}
// Execute job dsl, using adopt's template if the user doesn't have one
def create = null
try {
create = context.jobDsl targets: jobTemplatePath, ignoreExisting: false, additionalParameters: params
} catch (Exception e) {
context.println "[WARNING] Something went wrong when creating the job dsl. It may be because we are trying to pull the template inside a user repository. Using Adopt's template instead. Error:\n${e}"
repoHandler.checkoutAdoptPipelines(context)
create = context.jobDsl targets: ADOPT_DEFAULTS_JSON['templateDirectories']['downstream'], ignoreExisting: false, additionalParameters: params
repoHandler.checkoutUserPipelines(context)
}
return create
}
/**
* Make downstream job from config and name
* @param jobConfig
* @param jobName
*/
def makeJob(def jobConfig, def jobName) {
IndividualBuildConfig config = jobConfig.get(jobName)
// jdk8u-linux-x64-hotspot
def jobTopName = "${javaToBuild}-${jobName}"
def jobFolder = "${jobRootDir}/jobs/${javaToBuild}"
// e.g build-scripts/jobs/jdk8u/jdk8u-linux-x64-hotspot
def downstreamJobName = "${jobFolder}/${jobTopName}"
context.println "[INFO] build name: ${downstreamJobName}"
// Job dsl
createJob(jobTopName, jobFolder, config)
// Job regenerated correctly
context.println "[SUCCESS] Regenerated configuration for job $downstreamJobName\n"
}
/**
* Queries an API. Used to get the pipeline details
* @param query
*/
def queryAPI(String query) {
// TODO: use sharedlib JobHelper.groovy queryJsonApi() instead
try {
HttpURLConnection getJenkins = new URL(query).openConnection()
// Set request credentials if they exist
if (jenkinsCreds != '') {
def jenkinsAuth = 'Basic ' + new String(Base64.getEncoder().encode(jenkinsCreds.getBytes()))
getJenkins.setRequestProperty('Authorization', jenkinsAuth)
getJenkins.setRequestMethod("GET")
}
// for 200 or 2XX as response code, main flow
if (getJenkins.getResponseCode() == HttpURLConnection.HTTP_OK) {
return new JsonSlurper().parseText(getJenkins.getInputStream().getText())
} else { // when wrong credential(cannot access), wrong url (does not exist), wrong endpoint
return null
}
} catch (Exception e) {
// Failed to connect to jenkins api or a parsing error occurred
throw new Exception("[ERROR] Failure on jenkins api connection or parsing.\n${e}")
}
}
/**
* Main function. Ran from pipelines/build/regeneration/build_job_generator.groovy, this will be what jenkins will run first.
*/
@SuppressWarnings('unused')
def regenerate() {
context.timestamps {
def versionNumbers = javaVersion =~ /\d+/
/*
* Stage: Check that nightly and evaluation nightly pipeline isn't in in-progress or queued up.
* Once clear, run the regeneration job
*/
context.stage("Check $javaVersion pipeline status") {
if ((jobType == 'release') || jobRootDir.contains('pr-tester')) { // use jobType or pr-tester in path
// No need to check if we're going to overwrite anything for the PR tester since concurrency isn't enabled -> https://github.com/adoptium/temurin-build/pull/2155
context.println "[SUCCESS] Skip check if pr-tester or release pipeline is running as concurrency is disabled. Running regeneration job..."
} else {
// Get all pipelines
def getPipelines = queryAPI("${jenkinsBuildRoot}/api/json?tree=jobs[name]&pretty=true&depth1")
// Parse api response to only extract the relevant pipeline
getPipelines.jobs.name.each { pipeline ->
def pipelineName = (jobType != "evaluation" ? "openjdk${versionNumbers[0]}-pipeline" : "evaluation-openjdk${versionNumbers[0]}-pipeline")
if (pipeline == pipelineName) {
Boolean inProgress = true
while (inProgress) {
// Check if pipeline is in progress using api
context.println "[INFO] Checking if ${pipeline} is running..." // e.g. openjdk8-pipeline or evaluation-openjdk11-pipeline
def pipelineInProgress = queryAPI("${jenkinsBuildRoot}/job/${pipeline}/lastBuild/api/json?pretty=true&depth1")
// If query fails, check to see if the pipeline has been run before
if (pipelineInProgress == null) {
def getPipelineBuilds = queryAPI("${jenkinsBuildRoot}/job/${pipeline}/api/json?pretty=true&depth1")
if (getPipelineBuilds.builds == []) {
context.println "[SUCCESS] ${pipeline} has not been run before. Running regeneration job..."
inProgress = false
}
} else {
inProgress = pipelineInProgress.building as Boolean
}
if (inProgress) {
// Null safety check sleep as sleeping null may cause jenkins DoS
if (!sleepTime) {
sleepTime = 900
}
// Sleep for a bit, then check again...
context.println "[INFO] ${pipeline} is running. Sleeping for ${sleepTime} seconds while waiting for ${pipeline} to complete..."
context.sleep(time: sleepTime, unit: 'SECONDS')
}
}
context.println "[SUCCESS] ${pipeline} is idle. Running regeneration job..."
}
}
}
} // end check stage
/*
* Stage: Regenerate all of the job configurations by job type (i.e. jdk8u-linux-x64-hotspot
* jdk8u-linux-x64-openj9, etc.)
*/
context.stage("Regenerate $javaVersion pipeline jobs") {
// If we're building jdk head, update the javaToBuild
context.println '[INFO] Querying Adoptium api to get the JDK-Head number'
String helperRef = DEFAULTS_JSON['repository']['helper_ref']
def JobHelper = context.library(identifier: "openjdk-jenkins-helper@${helperRef}").JobHelper
Integer jdkHeadNum = Integer.valueOf(JobHelper.getAvailableReleases(context).tip_version)
if (Integer.valueOf(versionNumbers[0]) == jdkHeadNum) {
javaToBuild = 'jdk'
context.println "[INFO] This IS JDK-HEAD. javaToBuild is ${javaToBuild}."
} else {
javaToBuild = "${javaVersion}"
context.println "[INFO] This IS NOT JDK-HEAD. javaToBuild is ${javaToBuild}..."
}
// Regenerate each os and arch
targetConfigurations.keySet().each { osarch ->
context.println "[INFO] Regenerating: $osarch"
for (def variant in targetConfigurations.get(osarch)) {
context.println "[INFO] Regenerating variant $osarch: $variant..."
// Construct configuration for downstream job
Map<String, IndividualBuildConfig> jobConfigurations = [:]
String name = null
Boolean keyFound = false
// Using a foreach here as containsKey doesn't work for some reason
buildConfigurations.keySet().each { key ->
if (key == osarch) {
//For build type, generate a configuration
context.println "[INFO] FOUND MATCH! buildConfiguration key: ${key} and config file key: ${osarch}"
keyFound = true
def platformConfig = buildConfigurations.get(key) as Map<String, ?>
// default nightly or pr-tester job name
name = "${platformConfig.os}-${platformConfig.arch}-${variant}"
// release or evaluation job name
if (jobType != "nightly" && jobType != "pr-tester") {
name = jobType+"-" + name
}
if (platformConfig.containsKey('additionalFileNameTag')) {
name += "-${platformConfig.additionalFileNameTag}"
}
jobConfigurations[name] = buildConfiguration(platformConfig, variant, javaToBuild)
}
}
if (keyFound == false) {
context.println "[WARNING] Config file key: ${osarch} not recognised.\nValid configuration keys for ${javaToBuild} are ${buildConfigurations.keySet()}.\n[WARNING] ${osarch} WILL NOT BE REGENERATED! Setting build result to UNSTABLE..."
currentBuild.result = 'UNSTABLE'
} else {
// Skip variant job make if it's marked as excluded
if (jobConfigurations.get(name) == EXCLUDED_CONST) {
continue
} // Make job
else if (jobConfigurations.get(name) != null) {
makeJob(jobConfigurations, name)
// Unexpected error when building or getting the configuration
} else {
throw new Exception("[ERROR] IndividualBuildConfig is malformed or null for key: ${osarch} : ${variant}.")
}
}
} // end variant for loop
context.println "[SUCCESS] ${osarch} completed!\n"
} // end key foreach loop
} // end stage
} // end timestamps
} // end regenerate()
}
return {
String javaVersion,
Map<String, Map<String, ?>> buildConfigurations,
Map<String, ?> targetConfigurations,
Map<String, ?> DEFAULTS_JSON,
Map<String, ?> ADOPT_DEFAULTS_JSON,
String excludes,
Integer sleepTime,
def currentBuild,
def context,
String jobRootDir,
Map gitRemoteConfigs,
String gitBranch,
String jobTemplatePath,
String baseFilePath,
String scriptPath,
String jenkinsBuildRoot,
String jenkinsCreds,
String checkoutCreds,
String jobType
->
def excludedBuilds = [:]
if (excludes != '' && excludes != null) {
excludedBuilds = new JsonSlurper().parseText(excludes) as Map
}
return new Regeneration(
javaVersion,
buildConfigurations,
targetConfigurations,
DEFAULTS_JSON,
ADOPT_DEFAULTS_JSON,
excludedBuilds,
sleepTime,
currentBuild,
context,
jobRootDir,
gitRemoteConfigs,
gitBranch,
jobTemplatePath,
baseFilePath,
scriptPath,
jenkinsBuildRoot,
jenkinsCreds,
checkoutCreds,
jobType
)
}