forked from dotnet/corert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netci.groovy
80 lines (68 loc) · 3.64 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
// Import the utility functionality.
import jobs.generation.Utilities;
// Defines a the new of the repo, used elsewhere in the file
def project = 'dotnet/corert'
// Map of OS's to labels. TODO: Maybe move this into the Utils
def machineLabelMap = ['Ubuntu':'ubuntu',
'OSX':'mac',
'Windows_NT':'windows',
'FreeBSD': 'freebsd',
'CentOS7.1': 'centos-71',
'OpenSUSE13.2': 'openSuSE-132']
// Innerloop build OS's
def osList = ['Ubuntu', 'OSX', 'Windows_NT']
// Generate the builds for debug and release, commit and PRJob
[true, false].each { isPR -> // Defines a closure over true and false, value assigned to isPR
['Debug', 'Release'].each { configuration ->
osList.each { os ->
// Define build string
def lowercaseConfiguration = configuration.toLowerCase()
// Determine the name for the new job. The first parameter is the project,
// the second parameter is the base name for the job, and the last parameter
// is a boolean indicating whether the job will be a PR job. If true, the
// suffix _prtest will be appended.
def newJobName = Utilities.getFullJobName(project, lowercaseConfiguration, isPR)+ '_' + os.toLowerCase()
def buildString = "";
// Calculate the build commands
if (os == 'Windows_NT') {
buildString = "build.cmd ${lowercaseConfiguration}"
}
else {
// On other OS's we skipmscorlib but run the pal tests
buildString = "./build.sh ${lowercaseConfiguration}"
}
// Create a new job with the specified name. The brace opens a new closure
// and calls made within that closure apply to the newly created job.
def newJob = job(newJobName) {
// Indicate what kind of machine this job runs on.
// Indicates that a batch script should be run with the build string (see above)
label(machineLabelMap[os])
// This opens the set of build steps that will be run.
steps {
if (os == 'Windows_NT') {
// Indicates that a batch script should be run with the build string (see above)
batchFile(buildString)
}
else {
shell(buildString)
}
}
}
// This call performs test run checks for the CI.
Utilities.addXUnitDotNETResults(newJob, '**/testResults.xml')
// This call performs remaining common job setup on the newly created job.
// This is used most commonly for simple inner loop testing.
// It does the following:
// 1. Sets up source control for the project.
// 2. Adds a push trigger if the job is a PR job
// 3. Adds a github PR trigger if the job is a PR job.
// The optional context (label that you see on github in the PR checks) is added.
// If not provided the context defaults to the job name.
// 4. Adds standard options for build retention and timeouts
// 5. Adds standard parameters for PR and push jobs.
// These allow PR jobs to be used for simple private testing, for instance.
// See the documentation for this function to see additional optional parameters.
Utilities.simpleInnerLoopJobSetup(newJob, project, isPR, "${os} ${configuration}")
}
}
}