forked from dotnet/roslyn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netci.groovy
288 lines (255 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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// Groovy Script: http://www.groovy-lang.org/syntax.html
// Jenkins DSL: https://github.com/jenkinsci/job-dsl-plugin/wiki
import jobs.generation.*;
// The input project name (e.g. dotnet/corefx)
def projectName = GithubProject
// The input branch name (e.g. master)
def branchName = GithubBranchName
// Folder that the project jobs reside in (project/branch)
def projectFoldername = Utilities.getFolderName(projectName) + '/' + Utilities.getFolderName(branchName)
def windowsUnitTestMachine = 'win2016-base'
static void addRoslynJob(def myJob, String jobName, String branchName, Boolean isPr, String triggerPhraseExtra, Boolean triggerPhraseOnly = false) {
def archiveSettings = new ArchivalSettings()
archiveSettings.addFiles('Binaries/**/*.pdb')
archiveSettings.addFiles('Binaries/**/*.xml')
archiveSettings.addFiles('Binaries/**/*.log')
archiveSettings.addFiles('Binaries/**/*.dmp')
archiveSettings.addFiles('Binaries/**/*.zip')
archiveSettings.addFiles('Binaries/**/*.png')
archiveSettings.addFiles('Binaries/**/*.buildlog')
archiveSettings.addFiles('Binaries/**/*.binlog')
archiveSettings.excludeFiles('Binaries/Obj/**')
archiveSettings.excludeFiles('Binaries/Bootstrap/**')
archiveSettings.excludeFiles('Binaries/**/nuget*.zip')
// Only archive if failed/aborted
archiveSettings.setArchiveOnFailure()
archiveSettings.setFailIfNothingArchived()
Utilities.addArchival(myJob, archiveSettings)
// Create the standard job. This will setup parameter, SCM, timeout, etc ...
def projectName = 'dotnet/roslyn'
// Need to setup the triggers for the job
if (isPr) {
// Note the use of ' vs " for the 4th argument. We don't want groovy to interpolate this string (the ${ghprbPullId}
// is resolved when the job is run based on an environment variable set by the Jenkins Pull Request Builder plugin.
Utilities.standardJobSetupPR(myJob, projectName, null, '+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*');
def triggerCore = "open|all|${jobName}"
if (triggerPhraseExtra) {
triggerCore = "${triggerCore}|${triggerPhraseExtra}"
}
def triggerPhrase = "(?im)^\\s*(@?dotnet-bot\\,?\\s+)?(re)?test\\s+(${triggerCore})(\\s+please\\.?)?\\s*\$";
def contextName = jobName
Utilities.addGithubPRTriggerForBranch(myJob, branchName, contextName, triggerPhrase, triggerPhraseOnly)
} else {
Utilities.standardJobSetupPush(myJob, projectName, "*/${branchName}");
Utilities.addGithubPushTrigger(myJob)
// TODO: Add once external email sending is available again
// addEmailPublisher(myJob)
}
}
// True when this is a PR job, false for commit. On feature branches we do PR jobs only.
def commitPullList = [false, true]
if (branchName.startsWith("features/")) {
commitPullList = [true]
}
// Windows Desktop CLR
commitPullList.each { isPr ->
['debug', 'release'].each { configuration ->
['unit32', 'unit64'].each { buildTarget ->
def jobName = Utilities.getFullJobName(projectName, "windows_${configuration}_${buildTarget}", isPr)
def myJob = job(jobName) {
description("Windows ${configuration} tests on ${buildTarget}")
steps {
batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} ${(buildTarget == 'unit32') ? '-test32' : '-test64'} -procdump -testDesktop""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = ""
Utilities.setMachineAffinity(myJob, 'Windows_NT', windowsUnitTestMachine)
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
}
}
// Windows Spanish image
commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "windows_debug_spanish_unit32", isPr)
def myJob = job(jobName) {
description("Windows debug unit tests on unit32 using Spanish language")
steps {
batchFile(""".\\build\\scripts\\cibuild.cmd -debug -test32 -testDesktop""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = ""
Utilities.setMachineAffinity(myJob, 'Windows.10.Amd64.ClientRS4.ES.Open')
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
// Windows CoreCLR
commitPullList.each { isPr ->
['debug', 'release'].each { configuration ->
def jobName = Utilities.getFullJobName(projectName, "windows_coreclr_${configuration}", isPr)
def myJob = job(jobName) {
description("Windows CoreCLR unit tests")
steps {
batchFile(""".\\build\\scripts\\cibuild.cmd ${(configuration == 'debug') ? '-debug' : '-release'} -buildCoreClr -testCoreClr""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = ""
Utilities.setMachineAffinity(myJob, 'Windows_NT', windowsUnitTestMachine)
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
}
// Ubuntu 16.04
commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "ubuntu_16_debug", isPr)
def myJob = job(jobName) {
description("Ubuntu 16.04 tests")
steps {
shell("./build/scripts/cibuild.sh --debug")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = "linux"
Utilities.setMachineAffinity(myJob, 'Ubuntu16.04', 'latest-or-auto')
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
// Ubuntu 16.04 mono
commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "ubuntu_16_mono_debug", isPr)
def myJob = job(jobName) {
description("Ubuntu 16.04 mono tests")
steps {
shell("./build/scripts/cibuild.sh --debug --docker --mono")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = "linux"
Utilities.setMachineAffinity(myJob, 'Ubuntu16.04', 'latest-or-auto')
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
// Mac
commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "mac_debug", isPr)
def myJob = job(jobName) {
description("Mac tests")
steps {
shell("./build/scripts/cibuild.sh --debug")
}
}
def triggerPhraseOnly = true
def triggerPhraseExtra = "mac"
Utilities.setMachineAffinity(myJob, 'OSX10.12', 'latest-or-auto')
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
// Determinism
commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "windows_determinism", isPr)
def myJob = job(jobName) {
description('Determinism tests')
steps {
batchFile(""".\\build\\scripts\\cibuild.cmd -testDeterminism""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = "determinism"
Utilities.setMachineAffinity(myJob, 'Windows_NT', windowsUnitTestMachine)
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
// Build correctness tests
commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "windows_build_correctness", isPr)
def myJob = job(jobName) {
description('Build correctness tests')
steps {
batchFile(""".\\build\\scripts\\test-build-correctness.cmd -cibuild -release""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = ""
Utilities.setMachineAffinity(myJob, 'Windows_NT', windowsUnitTestMachine)
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
// Microbuild
commitPullList.each { isPr ->
def jobName = Utilities.getFullJobName(projectName, "microbuild", isPr)
def myJob = job(jobName) {
description('MicroBuild test')
steps {
batchFile(""".\\src\\Tools\\MicroBuild\\cibuild.cmd""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = "microbuild"
Utilities.setMachineAffinity(myJob, 'Windows_NT', windowsUnitTestMachine)
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
// VS Integration Tests
commitPullList.each { isPr ->
['debug', 'release'].each { configuration ->
['vs-integration'].each { buildTarget ->
def jobName = Utilities.getFullJobName(projectName, "windows_${configuration}_${buildTarget}", isPr)
def myJob = job(jobName) {
description("Windows ${configuration} tests on ${buildTarget}")
steps {
batchFile(""".\\build\\scripts\\cibuild.cmd -${configuration} -procdump -testVsi""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = ""
Utilities.setMachineAffinity(myJob, 'Windows.10.Amd64.ClientRS4.DevEx.Open')
Utilities.addXUnitDotNETResults(myJob, '**/xUnitResults/*.xml')
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
}
}
// Loc status check
commitPullList.each { isPr ->
// Add the check for PR builds, and dev15.8.x/dev15.8.x-vs-deps builds.
if (isPr
|| branchName == "dev15.8.x"
|| branchName == "dev15.8.x-vs-deps") {
def jobName = Utilities.getFullJobName(projectName, "windows_loc_status", isPr)
def myJob = job(jobName) {
description('Check for untranslated resources')
steps {
batchFile(""".\\build\\scripts\\check-loc-status.cmd""")
}
}
// Run it automatically on CI builds but only when requested on PR builds.
def triggerPhraseOnly = isPr
def triggerPhraseExtra = "loc"
Utilities.setMachineAffinity(myJob, 'Windows_NT', windowsUnitTestMachine)
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
}
// Loc change check
commitPullList.each { isPr ->
// This job blocks PRs with loc changes, so only activate it for PR builds of
// release branches after a loc freeze.
if (isPr
&& (branchName == "dev15.8.x"
|| branchName == "dev15.8.x-vs-deps")) {
def jobName = Utilities.getFullJobName(projectName, "windows_loc_changes", isPr)
def myJob = job(jobName) {
description('Validate that a PR contains no localization changes')
steps {
batchFile(""".\\build\\scripts\\check-for-loc-changes.cmd -base origin/${branchName} -head %GIT_COMMIT%""")
}
}
def triggerPhraseOnly = false
def triggerPhraseExtra = "loc changes"
Utilities.setMachineAffinity(myJob, 'Windows_NT', windowsUnitTestMachine)
addRoslynJob(myJob, jobName, branchName, isPr, triggerPhraseExtra, triggerPhraseOnly)
}
}
JobReport.Report.generateJobReport(out)
// Make the call to generate the help job
Utilities.createHelperJob(this, projectName, branchName,
"Welcome to the ${projectName} Repository", // This is prepended to the help message
"Have a nice day!") // This is appended to the help message. You might put known issues here.