forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netci.groovy
269 lines (228 loc) · 11.1 KB
/
netci.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// Import the utility functionality.
import jobs.generation.Utilities;
// Grab the github project name passed in
def project = GithubProject
def branch = GithubBranchName
def msbuildTypeMap = [
'debug':'chk',
'test':'test',
'release':'fre'
]
// convert `machine` parameter to OS component of PR task name
def machineTypeToOSTagMap = [
'Windows 7': 'Windows 7',
'Windows_NT': 'Windows',
'Ubuntu14.04': 'Ubuntu14.04',
'Ubuntu16.04': 'Ubuntu'
]
def dailyRegex = 'dailies'
// Only generate PR check triggers for the version of netci.groovy in the master branch
// since those PR checks will apply for all branches.
def jobTypesToGenerate = [false]
if (branch.startsWith('master')) {
// OK to generate PR checks (this ensures we only generate one set of them)
jobTypesToGenerate += true
}
// ---------------
// HELPER CLOSURES
// ---------------
def CreateBuildTasks = { machine, configTag, buildExtra, testExtra, runCodeAnalysis, excludeConfigIf, nonDefaultTaskSetup ->
jobTypesToGenerate.each { isPR ->
['x86', 'x64', 'arm'].each { buildArch ->
['debug', 'test', 'release'].each { buildType ->
if (excludeConfigIf && excludeConfigIf(isPR, buildArch, buildType)) {
return // early exit: we don't want to create a job for this configuration
}
def config = "${buildArch}_${buildType}"
config = (configTag == null) ? config : "${configTag}_${config}"
// params: Project, BaseTaskName, IsPullRequest (appends '_prtest')
def jobName = Utilities.getFullJobName(project, config, isPR)
def testableConfig = buildType in ['debug', 'test'] && buildArch != 'arm'
def analysisConfig = buildType in ['release'] && runCodeAnalysis
def buildScript = "call .\\jenkins\\buildone.cmd ${buildArch} ${buildType} "
buildScript += buildExtra ?: ''
buildScript += analysisConfig ? ' "/p:runcodeanalysis=true"' : ''
def testScript = "call .\\jenkins\\testone.cmd ${buildArch} ${buildType} "
testScript += testExtra ?: ''
def analysisScript = '.\\Build\\scripts\\check_prefast_error.ps1 . CodeAnalysis.err'
def newJob = job(jobName) {
// This opens the set of build steps that will be run.
// This looks strange, but it is actually a method call, with a
// closure as a param, since Groovy allows method calls without parens.
// (Compare with '.each' method used above.)
steps {
batchFile(buildScript) // run the parameter as if it were a batch file
if (testableConfig) {
batchFile(testScript)
}
if (analysisConfig) {
powerShell(analysisScript)
}
}
}
def msbuildType = msbuildTypeMap.get(buildType)
def msbuildFlavor = "build_${buildArch}${msbuildType}"
def archivalString = "test/${msbuildFlavor}.*,test/logs/**"
archivalString += analysisConfig ? ',CodeAnalysis.err' : ''
Utilities.addArchival(newJob, archivalString,
'', // no exclusions from archival
false, // doNotFailIfNothingArchived=false ~= failIfNothingArchived
false) // archiveOnlyIfSuccessful=false ~= archiveAlways
Utilities.setMachineAffinity(newJob, machine, 'latest-or-auto')
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
if (nonDefaultTaskSetup == null) {
if (isPR) {
def osTag = machineTypeToOSTagMap.get(machine)
// Set up checks which apply to PRs targeting any branch
Utilities.addGithubPRTrigger(newJob, "${osTag} ${config}")
// To enable PR checks only for specific target branches, use the following instead:
// Utilities.addGithubPRTriggerForBranch(newJob, branch, checkName)
} else {
Utilities.addGithubPushTrigger(newJob)
}
} else {
// nonDefaultTaskSetup is e.g. DailyBuildTaskSetup (which sets up daily builds)
// These jobs will only be configured for the branch specified below,
// which is the name of the branch netci.groovy was processed for.
// See list of such branches at:
// https://github.com/dotnet/dotnet-ci/blob/master/jobs/data/repolist.txt
nonDefaultTaskSetup(newJob, isPR, config)
}
}
}
}
}
def CreateLinuxBuildTasks = { machine, configTag, linuxBranch, nonDefaultTaskSetup ->
[true, false].each { isPR ->
['debug', 'release'].each { buildType ->
def config = "linux_${buildType}"
config = (configTag == null) ? config : "${configTag}_${config}"
// params: Project, BaseTaskName, IsPullRequest (appends '_prtest')
def jobName = Utilities.getFullJobName(project, config, isPR)
def testableConfig = buildType in ['debug']
def infoScript = 'bash jenkins/get_system_info.sh'
def debugFlag = buildType == 'debug' ? '--debug' : ''
def buildScript = "bash ./build.sh -j=`nproc` ${debugFlag} --cxx=/usr/bin/clang++-3.8 --cc=/usr/bin/clang-3.8"
def testScript = "bash test/runtests.sh"
def newJob = job(jobName) {
steps {
shell(infoScript)
shell(buildScript)
if (testableConfig) {
shell(testScript)
}
}
}
def archivalString = "BuildLinux/build.log"
Utilities.addArchival(newJob, archivalString,
'', // no exclusions from archival
true, // doNotFailIfNothingArchived=false ~= failIfNothingArchived (true ~= doNotFail)
false) // archiveOnlyIfSuccessful=false ~= archiveAlways
Utilities.setMachineAffinity(newJob, machine, 'latest-or-auto')
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
if (nonDefaultTaskSetup == null) {
if (isPR) {
def osTag = machineTypeToOSTagMap.get(machine)
// Set up checks which apply to PRs targeting any branch
Utilities.addGithubPRTriggerForBranch(newJob, linuxBranch, "${osTag} ${config}")
// To enable PR checks only for specific target branches, use the following instead:
// Utilities.addGithubPRTriggerForBranch(newJob, branch, checkName)
} else {
Utilities.addGithubPushTrigger(newJob)
}
} else {
// nonDefaultTaskSetup is e.g. DailyBuildTaskSetup (which sets up daily builds)
// These jobs will only be configured for the branch specified below,
// which is the name of the branch netci.groovy was processed for.
// See list of such branches at:
// https://github.com/dotnet/dotnet-ci/blob/master/jobs/data/repolist.txt
nonDefaultTaskSetup(newJob, isPR, config)
}
}
}
}
def DailyBuildTaskSetup = { newJob, isPR, triggerName, groupRegex ->
// The addition of triggers makes the job non-default in GitHub.
if (isPR) {
def triggerRegex = "(${dailyRegex}|${groupRegex}|${triggerName})"
Utilities.addGithubPRTrigger(newJob,
triggerName, // GitHub task name
"(?i).*test\\W+${triggerRegex}.*")
} else {
Utilities.addPeriodicTrigger(newJob, '@daily')
}
}
def CreateStyleCheckTasks = { taskString, taskName, checkName ->
[true, false].each { isPR ->
def jobName = Utilities.getFullJobName(project, taskName, isPR)
def newJob = job(jobName) {
steps {
shell(taskString)
}
}
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
if (isPR) {
// Set PR trigger.
Utilities.addGithubPRTrigger(newJob, checkName)
} else {
// Set a push trigger
Utilities.addGithubPushTrigger(newJob)
}
Utilities.setMachineAffinity(newJob, 'Ubuntu14.04', 'latest-or-auto')
}
}
// ----------------
// INNER LOOP TASKS
// ----------------
CreateBuildTasks('Windows_NT', null, null, null, true, null, null)
// -----------------
// DAILY BUILD TASKS
// -----------------
if (!branch.endsWith('-ci')) {
// build and test on Windows 7 with VS 2013 (Dev12/MsBuild12)
CreateBuildTasks('Windows 7', 'daily_dev12', 'msbuild12', '-win7 -includeSlow', false,
/* excludeConfigIf */ { isPR, buildArch, buildType -> (buildArch == 'arm') },
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
DailyBuildTaskSetup(newJob, isPR,
"Windows 7 ${config}",
'(dev12|legacy)\\s+tests')})
// build and test on the usual configuration (VS 2015) with -includeSlow
CreateBuildTasks('Windows_NT', 'daily_slow', null, '-includeSlow', false,
/* excludeConfigIf */ null,
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
DailyBuildTaskSetup(newJob, isPR,
"Windows ${config}",
'slow\\s+tests')})
// build and test on the usual configuration (VS 2015) with JIT disabled
CreateBuildTasks('Windows_NT', 'daily_disablejit', '"/p:BuildJIT=false"', '-disablejit', true,
/* excludeConfigIf */ null,
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
DailyBuildTaskSetup(newJob, isPR,
"Windows ${config}",
'(disablejit|nojit)\\s+tests')})
}
// ----------------
// CODE STYLE TASKS
// ----------------
CreateStyleCheckTasks('./jenkins/check_eol.sh', 'ubuntu_check_eol', 'EOL Check')
CreateStyleCheckTasks('./jenkins/check_copyright.sh', 'ubuntu_check_copyright', 'Copyright Check')
// -----------------
// LINUX BUILD TASKS
// -----------------
if (branch.startsWith('linux')) {
osString = 'Ubuntu16.04'
// PR checks
CreateLinuxBuildTasks(osString, "ubuntu", branch, null)
// daily builds
if (!branch.endsWith('-ci')) {
CreateLinuxBuildTasks(osString, "daily_ubuntu", branch,
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
DailyBuildTaskSetup(newJob, isPR,
"Ubuntu ${config}",
'linux\\s+tests')})
}
}