-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
build_job_generator.groovy
273 lines (242 loc) · 13.1 KB
/
build_job_generator.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
import java.nio.file.NoSuchFileException
import groovy.json.JsonSlurper
import groovy.json.JsonOutput
/*
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.
*/
/*
File used for generate downstream build jobs which are triggered by via [release_]pipeline_jobs_generator_jdkX, e.g:
- build-scripts/jobs/jdk11u/jdk11u-linux-arm-temurin (jobType = "nightly")
- build-scripts/jobs/jdk11u/evaluation-jdk11u-linux-arm-temurin (when jobType = "evaluation")
- build-scripts/release/jobs/release-jdk17u-mac-x64-temurin (when jobType = "release")
- build-scripts-pr-tester/build-test/jobs/jdk21/jdk21-alpine-linux-x64-temurin (when "pr-tester")
*/
String javaVersion = params.JAVA_VERSION
String ADOPT_DEFAULTS_FILE_URL = 'https://raw.githubusercontent.com/adoptium/ci-jenkins-pipelines/master/pipelines/defaults.json'
if (params.REPOSITORY_BRANCH != "") { // mainly for release jobs to use tag
ADOPT_DEFAULTS_FILE_URL = "https://raw.githubusercontent.com/adoptium/ci-jenkins-pipelines/${params.REPOSITORY_BRANCH}/pipelines/defaults.json"
}
String DEFAULTS_FILE_URL = (params.DEFAULTS_URL) ?: ADOPT_DEFAULTS_FILE_URL
node('worker') {
// Retrieve Adopt Defaults
def getAdopt = new URL(ADOPT_DEFAULTS_FILE_URL).openConnection()
Map<String, ?> ADOPT_DEFAULTS_JSON = new JsonSlurper().parseText(getAdopt.getInputStream().getText()) as Map
if (!ADOPT_DEFAULTS_JSON || !Map.isInstance(ADOPT_DEFAULTS_JSON)) {
throw new Exception("[ERROR] No ADOPT_DEFAULTS_JSON found at ${ADOPT_DEFAULTS_FILE_URL} or it is not a valid JSON object. Please ensure this path is correct and leads to a JSON or Map object file. NOTE: Since this adopt's defaults and unlikely to change location, this is likely a network or GitHub issue.")
}
// Retrieve User Defaults
def getUser = new URL(DEFAULTS_FILE_URL).openConnection()
Map<String, ?> DEFAULTS_JSON = new JsonSlurper().parseText(getUser.getInputStream().getText()) as Map
if (!DEFAULTS_JSON || !Map.isInstance(DEFAULTS_JSON)) {
throw new Exception("[ERROR] No DEFAULTS_JSON found at ${DEFAULTS_FILE_URL}. Please ensure this path is correct and it leads to a JSON or Map object file.")
}
try {
// Load git url and branch and gitBranch. These determine where we will be pulling configs from.
def repoUrl = (params.REPOSITORY_URL) ?: DEFAULTS_JSON['repository']['pipeline_url']
def repoBranch = (params.REPOSITORY_BRANCH) ?: DEFAULTS_JSON['repository']['pipeline_branch']
// Load credentials to be used in checking out. This is in case we are checking out a URL that is not Adopts and they don't have their ssh key on the machine.
def checkoutCreds = (params.CHECKOUT_CREDENTIALS) ?: ''
def remoteConfigs = new JsonSlurper().parseText('{ "url": "" }') as Map
remoteConfigs.url = repoUrl
if (checkoutCreds != '') {
// This currently does not work with user credentials due to https://issues.jenkins.io/browse/JENKINS-60349
remoteConfigs.credentials = "${checkoutCreds}"
} else {
println "[WARNING] CHECKOUT_CREDENTIALS not specified! Checkout to $repoUrl may fail if you do not have your ssh key on this machine."
}
/*
Changes dir to Adopt's repo. Use closures as functions aren't accepted inside node blocks
*/
def checkoutAdoptPipelines = { ->
checkout([$class: 'GitSCM',
branches: [ [ name: ADOPT_DEFAULTS_JSON['repository']['pipeline_branch'] ] ],
userRemoteConfigs: [ [ url: ADOPT_DEFAULTS_JSON['repository']['pipeline_url'] ] ]
])
}
/*
Changes dir to the user's repo. Use closures as functions aren't accepted inside node blocks
*/
def checkoutUserPipelines = { ->
checkout([$class: 'GitSCM',
branches: [ [ name: repoBranch ] ],
userRemoteConfigs: [ remoteConfigs ]
])
}
String helperRef = DEFAULTS_JSON['repository']['helper_ref']
library(identifier: "openjdk-jenkins-helper@${helperRef}")
// Load buildConfigurations from config file. This is what the nightlies & releases use to setup their downstream jobs
def buildConfigurations = null
def buildConfigPath = (params.BUILD_CONFIG_PATH) ? "${WORKSPACE}/${BUILD_CONFIG_PATH}" : "${WORKSPACE}/${DEFAULTS_JSON['configDirectories']['build']}"
// Very first time to checkout ci-jenkins-pipeline repo
checkoutUserPipelines()
try {
buildConfigurations = load "${buildConfigPath}/${javaVersion}_pipeline_config.groovy"
} catch (NoSuchFileException e) {
try {
println "[WARNING] ${buildConfigPath}/${javaVersion}_pipeline_config.groovy does not exist, chances are we want a U version..."
buildConfigurations = load "${buildConfigPath}/${javaVersion}u_pipeline_config.groovy"
javaVersion += 'u'
} catch (NoSuchFileException e2) {
println "[WARNING] U version does not exist. Likelihood is we are generating from a repository that isn't Adopt's. Pulling Adopt's build config in..."
checkoutAdoptPipelines()
try {
buildConfigurations = load "${WORKSPACE}/${ADOPT_DEFAULTS_JSON['configDirectories']['build']}/${javaVersion}_pipeline_config.groovy"
} catch (NoSuchFileException e3) {
buildConfigurations = load "${WORKSPACE}/${ADOPT_DEFAULTS_JSON['configDirectories']['build']}/${javaVersion}u_pipeline_config.groovy"
javaVersion += 'u'
}
checkoutUserPipelines()
}
}
if (buildConfigurations == null) {
throw new Exception("[ERROR] Could not find buildConfigurations for ${javaVersion}")
}
/*
handle different type of downstream job: release, evaluation, nightly
could set to a "pr-tester" but most of the logic is same to nightly, wont gain much
*/
String jobType = ""
def jobRoot = (params.JOB_ROOT) ?: DEFAULTS_JSON['jenkinsDetails']['rootDirectory']
if (jobRoot.contains('release')) {
jobType = "release"
// either use root path or flag from job to determinate if it is evaluation
} else if (jobRoot.contains('evaluation') || params.IS_EVALUATION_JOB) {
jobType = "evaluation"
} else {
jobType = "nightly"
}
def targetConfigFile = (jobType == "nightly") ? "${javaVersion}.groovy" : "${javaVersion}_${jobType}.groovy"
def targetConfigPath = (params.TARGET_CONFIG_PATH) ? "${WORKSPACE}/${TARGET_CONFIG_PATH}/${targetConfigFile}" : "${WORKSPACE}/${DEFAULTS_JSON['configDirectories'][jobType]}/${targetConfigFile}"
if (!fileExists(targetConfigPath)) {
checkoutAdoptPipelines
targetConfigPath = "${WORKSPACE}/${ADOPT_DEFAULTS_JSON['configDirectories'][jobType]}/${targetConfigFile}"
}
load targetConfigPath
checkoutUserPipelines
if (targetConfigurations == null) {
throw new Exception("[ERROR] Could not find targetConfigurations for ${javaVersion}")
}
def jenkinsBuildRoot = (params.JENKINS_BUILD_ROOT) ?: "${DEFAULTS_JSON['jenkinsDetails']['rootUrl']}/job/${jobRoot}/"
def jobTemplatePath = (params.JOB_TEMPLATE_PATH) ?: DEFAULTS_JSON['templateDirectories']['downstream']
if (!fileExists(jobTemplatePath)) {
println "[WARNING] ${jobTemplatePath} does not exist in your chosen repository. Updating it to use Adopt's instead"
checkoutAdoptPipelines()
jobTemplatePath = ADOPT_DEFAULTS_JSON['templateDirectories']['downstream']
println "[SUCCESS] The path is now ${jobTemplatePath} relative to ${ADOPT_DEFAULTS_JSON['repository']['pipeline_url']}"
checkoutUserPipelines()
}
def scriptPath = (params.SCRIPT_PATH) ?: DEFAULTS_JSON['scriptDirectories']['downstream']
if (!fileExists(scriptPath)) {
println "[WARNING] ${scriptPath} does not exist in your chosen repository. Updating it to use Adopt's instead"
checkoutAdoptPipelines()
scriptPath = ADOPT_DEFAULTS_JSON['scriptDirectories']['downstream']
println "[SUCCESS] The path is now ${scriptPath} relative to ${ADOPT_DEFAULTS_JSON['repository']['pipeline_url']}"
checkoutUserPipelines()
}
def baseFilePath = (params.BASE_FILE_PATH) ?: DEFAULTS_JSON['baseFileDirectories']['downstream']
if (!fileExists(baseFilePath)) {
println "[WARNING] ${baseFilePath} does not exist in your chosen repository. Updating it to use Adopt's instead"
checkoutAdoptPipelines()
baseFilePath = ADOPT_DEFAULTS_JSON['baseFileDirectories']['downstream']
println "[SUCCESS] The path is now ${baseFilePath} relative to ${ADOPT_DEFAULTS_JSON['repository']['pipeline_url']}"
checkoutUserPipelines()
}
def excludes = (params.EXCLUDES_LIST) ?: ''
def jenkinsCreds = (params.JENKINS_AUTH) ?: ''
Integer sleepTime = 900
if (params.SLEEP_TIME) {
sleepTime = SLEEP_TIME as Integer
}
println '[INFO] Running regeneration script with the following configuration:'
println "VERSION: $javaVersion"
println "CI REPOSITORY URL: $repoUrl"
println "CI REPOSITORY BRANCH: $repoBranch"
println "BUILD CONFIGURATIONS: ${JsonOutput.prettyPrint(JsonOutput.toJson(buildConfigurations))}"
println "JOBS TO GENERATE: ${JsonOutput.prettyPrint(JsonOutput.toJson(targetConfigurations))}"
println "JOB ROOT: $jobRoot"
println "JENKINS ROOT: $jenkinsBuildRoot"
println "JOB TEMPLATE PATH: $jobTemplatePath"
println "SCRIPT PATH: $scriptPath"
println "BASE FILE PATH: $baseFilePath"
println "EXCLUDES LIST: $excludes"
println "SLEEP_TIME: $sleepTime"
println "JOB TYPE: $jobType"
// Load regen script and execute base file
Closure regenerationScript
def regenScriptPath = (params.REGEN_SCRIPT_PATH) ?: DEFAULTS_JSON['scriptDirectories']['regeneration']
try {
regenerationScript = load "${WORKSPACE}/${regenScriptPath}"
} catch (NoSuchFileException e) {
println "[WARNING] ${regenScriptPath} does not exist in your chosen repository. Using adopt's script path instead"
checkoutAdoptPipelines()
regenerationScript = load "${WORKSPACE}/${ADOPT_DEFAULTS_JSON['scriptDirectories']['regeneration']}"
checkoutUserPipelines()
}
if (jenkinsCreds != '') {
withCredentials([usernamePassword(
credentialsId: "${JENKINS_AUTH}",
usernameVariable: 'jenkinsUsername',
passwordVariable: 'jenkinsToken'
)]) {
String jenkinsCredentials = "$jenkinsUsername:$jenkinsToken"
regenerationScript(
javaVersion,
buildConfigurations,
targetConfigurations,
DEFAULTS_JSON,
ADOPT_DEFAULTS_JSON,
excludes,
sleepTime,
currentBuild,
this,
jobRoot,
remoteConfigs,
repoBranch,
jobTemplatePath,
baseFilePath,
scriptPath,
jenkinsBuildRoot,
jenkinsCredentials,
checkoutCreds,
jobType
).regenerate()
}
} else {
println '[WARNING] No Jenkins API Credentials have been provided! If your server does not have anonymous read enabled, you may encounter 403 api request error code.'
regenerationScript(
javaVersion,
buildConfigurations,
targetConfigurations,
DEFAULTS_JSON,
ADOPT_DEFAULTS_JSON,
excludes,
sleepTime,
currentBuild,
this,
jobRoot,
remoteConfigs,
repoBranch,
jobTemplatePath,
baseFilePath,
scriptPath,
jenkinsBuildRoot,
jenkinsCreds,
checkoutCreds,
jobType
).regenerate()
}
println '[SUCCESS] All done!'
} finally {
// Always clean up, even on failure (doesn't delete the generated jobs)
println '[INFO] Cleaning up...'
cleanWs deleteDirs: true
}
}