-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTemplate_Docs.groovy
312 lines (300 loc) · 12.2 KB
/
Template_Docs.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
import java.net.*
import groovy.json.JsonSlurper
def jsonPayload = new URL("https://raw.githubusercontent.com/zackliu/jenkins/master/config.json").getText();
def state = new JsonSlurper().parseText(jsonPayload);
def jsonPayloadJobs = readFileFromWorkspace(FILE)
jobsSettings = new JsonSlurper().parseText(jsonPayloadJobs)
/*
***************************************************************************************
* Below is the groovy script to create/update Jenkins job.
* Pls reference to https://jenkinsci.github.io/job-dsl-plugin/ for supported syntax by Jenkins DSL plugin.
***************************************************************************************
*/
def createJob(jobName, upstreamJobName, jobSettings, codeBranch, buildSteps) {
job(jobName) {
label(jobSettings['labelExpression'])
logRotator { // Discard old builds
daysToKeep(14) // If specified, build records are only kept up to this number of days.
numToKeep(40) // If specified, only up to this number of build records are kept.
artifactDaysToKeep(14) // If specified, artifacts from builds older than this number of days will be deleted, but the logs, history, reports, etc for the build will be kept.
artifactNumToKeep(40) // If specified, only up to this number of builds have their artifacts retained.
}
if (upstreamJobName) {
triggers {
upstream(upstreamJobName, 'SUCCESS')
}
}
scm {
git {
remote {
url(jobSettings['repoUrl'])
credentials(jobSettings['credentialId'])
}
branch(codeBranch)
}
}
steps {
shell(buildSteps.join('\n'))
}
publishers {
extendedEmail {
recipientList(jobSettings['mailGroup'])
defaultSubject('$DEFAULT_SUBJECT')
defaultContent('$DEFAULT_CONTENT')
contentType('default')
triggers {
always {
sendTo {
developers()
recipientList()
}
}
}
}
}
}
}
def createOpbuildJob(jobName, upstreamJobName, jobSettings, testBranch, githubToken) {
def contentBranch = jobSettings['branchMapping'][testBranch]['contentBranch']
def opbuildEndpoint = jobSettings['branchMapping'][testBranch]['opbuildEnv']
job(jobName) {
label(jobSettings['labelExpression'])
logRotator { // Discard old builds
daysToKeep(14) // If specified, build records are only kept up to this number of days.
numToKeep(40) // If specified, only up to this number of build records are kept.
artifactDaysToKeep(14) // If specified, artifacts from builds older than this number of days will be deleted, but the logs, history, reports, etc for the build will be kept.
artifactNumToKeep(40) // If specified, only up to this number of builds have their artifacts retained.
}
triggers {
upstream(upstreamJobName, 'SUCCESS')
}
scm {
git {
remote {
url(jobSettings['repoUrl'])
credentials(jobSettings['credentialId'])
}
branch('develop')
}
}
steps {
shell([
'npm install \n',
"gulp merge --repo openpublishing-test --gitUser Microsoft --gitToken ${githubToken} --sourceBranch master --targetBranch ${contentBranch}",
"gulp triggerBuild --buildEndpoint ${opbuildEndpoint} --buildBranch ${contentBranch}"
].join('\n'))
}
publishers {
extendedEmail {
recipientList(jobSettings['mailGroup'])
defaultSubject('$DEFAULT_SUBJECT')
defaultContent('$DEFAULT_CONTENT')
contentType('default')
triggers {
failure {
sendTo {
developers()
recipientList()
}
}
fixed {
sendTo {
developers()
recipientList()
}
}
}
}
}
}
}
def createE2eJob(jobName, upstreamJobName, jobSettings, testBranch) {
def e2eSettings = jobSettings['branchMapping'][testBranch]
job(jobName) {
label(jobSettings['labelExpression'])
logRotator { // Discard old builds
daysToKeep(14) // If specified, build records are only kept up to this number of days.
numToKeep(40) // If specified, only up to this number of build records are kept.
artifactDaysToKeep(14) // If specified, artifacts from builds older than this number of days will be deleted, but the logs, history, reports, etc for the build will be kept.
artifactNumToKeep(40) // If specified, only up to this number of builds have their artifacts retained.
}
triggers {
upstream(upstreamJobName, 'SUCCESS')
}
scm {
git {
remote {
url(jobSettings['repoUrl'])
credentials(jobSettings['credentialId'])
}
branch(e2eSettings['sourceBranch'])
}
}
steps {
shell([
'#!/bin/bash',
'npm install',
'npm update',
'sed -i \'s/maxInstances: 6/maxInstances: 2/g\' test/Docs/protractor.config.js',
'gulp clean',
"gulp e2e --configFile ${e2eSettings['configFile']} --baseUrl ${e2eSettings['baseUrl']} --branchName ${e2eSettings['contentBranch']}"
].join('\n'))
}
publishers {
artifactArchiver {
artifacts('result/e2e/screenshots/**/*.*') // Archive E2E test results
}
extendedEmail {
recipientList(jobSettings['mailGroup'])
defaultSubject('$DEFAULT_SUBJECT')
defaultContent('$DEFAULT_CONTENT')
contentType('default')
triggers {
failure {
sendTo {
developers()
recipientList()
}
}
fixed {
sendTo {
developers()
recipientList()
}
}
}
}
}
}
}
def createMergeJob(jobName, upstreamJobName, jobSettings, codeBranch, mergeTo) {
def parts = jobSettings['repoUrl'].split(/[\/\\]/)
def repoName = parts[-1]
job(jobName) {
label(jobSettings['labelExpression'])
logRotator { // Discard old builds
daysToKeep(14) // If specified, build records are only kept up to this number of days.
numToKeep(40) // If specified, only up to this number of build records are kept.
artifactDaysToKeep(14) // If specified, artifacts from builds older than this number of days will be deleted, but the logs, history, reports, etc for the build will be kept.
artifactNumToKeep(40) // If specified, only up to this number of builds have their artifacts retained.
}
triggers {
upstream(upstreamJobName, 'SUCCESS')
}
scm {
git {
remote {
name(repoName)
url(jobSettings['repoUrl'])
credentials(jobSettings['credentialId'])
}
branch(codeBranch)
extensions {
mergeOptions {
branch(mergeTo) // Sets the name of the branch to merge.
remote(repoName) // Sets the name of the repository that contains the branch to merge.
}
}
}
}
publishers {
git {
pushOnlyIfSuccess()
pushMerge()
}
}
}
}
def decode(text) {
return new String(text.decodeBase64())
}
def execute(settings) {
def folderName = "ops_${settings['partnerName']}_template"
// create & update a folder for this project
folder(folderName) {
displayName(folderName)
}
def branches = ['develop', 'release', 'hotfix', 'master']
def mergeMapping = [
develop: 'release',
release: 'master',
hotfix: 'master'
]
def bumpMapping = [
develop: 'prerelease',
release: 'minor',
hotfix: 'patch'
]
def gitToken = "sdf"
branches.each {
def ciJobName = folderName + '/' + it + '_ci'
def opbuildJobName = folderName + '/' + it + '_opbuild'
def e2eJobName = folderName + '/' + it + '_e2e'
def mergeJobName = folderName + '/' + it + '_merge'
def versionJobName = folderName + '/' + it + '_bump_version'
def locciJobName = folderName + '/' + it + '_locci'
def buildSteps = [
'npm install || npm install',
'npm update',
'cp project.js node_modules/opst/lib/utils/project.js',
'cp LiquidPlugin.js node_modules/opst/lib/loaders/LiquidPlugin.js',
'cp buildTasks.js node_modules/opst/lib/buildTasks.js',
'mv src/themes/yml/Rest.html.yml src/themes/yml/rest.html.yml',
'node node_modules/opst/bin/opst.js deployTheme -B docker_${it}'
]
def locBuildSteps = [
'npm install',
'npm update',
'npm run opst init',
"npm run opst -- deployLocTheme -B docker_${it}"
]
def bumpVersionSteps = [
'npm version ' + bumpMapping[it],
'git push --follow-tags ' + settings['ci']['repoUrl'] + ' HEAD:' + it
]
switch (it) {
case "develop":
createJob(ciJobName, null, settings['ci'], it, buildSteps)
createOpbuildJob(opbuildJobName, it + '_ci', settings['opbuild'], it, gitToken)
createE2eJob(e2eJobName, it + '_opbuild', settings['e2e'], it)
createMergeJob(mergeJobName, it + '_e2e', settings['ci'], it, mergeMapping[it])
break
case "release":
createJob(ciJobName, null, settings['ci'], it, buildSteps)
createOpbuildJob(opbuildJobName, it + '_ci', settings['opbuild'], it, gitToken)
createE2eJob(e2eJobName, it + '_opbuild', settings['e2e'], it)
createJob(versionJobName, null, settings['ci'], it, bumpVersionSteps)
break
case "hotfix":
createJob(ciJobName, null, settings['ci'], it, buildSteps)
createOpbuildJob(opbuildJobName, it + '_ci', settings['opbuild'], it, gitToken)
createE2eJob(e2eJobName, it + '_opbuild', settings['e2e'], it)
createJob(versionJobName, null, settings['ci'], it, bumpVersionSteps)
break
case "master":
createJob(ciJobName, null, settings['ci'], it, buildSteps)
createJob(locciJobName, it + '_ci', settings['ci'], it, locBuildSteps)
break
}
}
// create & update deliveryPipelineView
deliveryPipelineView("${folderName}/deliveryPipelineView") {
pipelineInstances(1)
columns(1)
updateInterval(10)
allowPipelineStart()
enableManualTriggers()
allowRebuild()
showTestResults(true)
pipelines {
component('develop_pipeline', 'develop_ci')
component('release_pipeline', 'release_ci')
component('hotfix_pipeline', 'hotfix_ci')
component('master_pipeline', 'master_ci')
component('Bump hotfix branch package version and add git tag', 'hotfix_bump_version')
component('Bump release branch package version and add git tag', 'release_bump_version')
}
}
}
// Main entry point
execute(jobsSettings)