forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netci.groovy
69 lines (59 loc) · 2.55 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
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// Import the utility functionality.
import jobs.generation.ArchivalSettings;
import jobs.generation.Utilities;
def project = GithubProject
def branch = GithubBranchName
def isPR = true
def osList = ['Windows_NT', 'Windows_NT_FullFramework', 'Ubuntu14.04', 'Ubuntu16.04', 'OSX10.12']
def configList = ['Release', 'Debug']
def static getBuildJobName(def configuration, def os) {
return configuration.toLowerCase() + '_' + os.toLowerCase()
}
osList.each { os ->
configList.each { config ->
// Calculate job name
def jobName = getBuildJobName(config, os)
def buildCommand = '';
def osBase = os
def machineAffinity = 'latest-or-auto'
// Calculate the build command
if (os == 'Windows_NT') {
buildCommand = ".\\build.cmd -Configuration $config"
machineAffinity = 'latest-dev15-3-preview1'
} else if (os == 'Windows_NT_FullFramework') {
buildCommand = ".\\build.cmd -Configuration $config -FullMSBuild"
osBase = 'Windows_NT'
machineAffinity = 'latest-dev15-3-preview1'
} else {
// Jenkins non-Ubuntu CI machines don't have docker
buildCommand = "./build.sh --configuration $config"
}
def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) {
// Set the label.
steps {
if (osBase == 'Windows_NT') {
// Batch
batchFile("""SET VS150COMNTOOLS=%ProgramFiles(x86)%\\Microsoft Visual Studio\\Preview\\Enterprise\\Common7\\Tools\\
${buildCommand}""")
}
else {
// Shell
shell(buildCommand)
}
}
}
def archiveSettings = new ArchivalSettings()
archiveSettings.addFiles("bin/**/*")
archiveSettings.addFiles("bin/log/**/*")
archiveSettings.excludeFiles("bin/obj/*")
archiveSettings.setFailIfNothingArchived()
archiveSettings.setArchiveOnFailure()
Utilities.addArchival(newJob, archiveSettings)
Utilities.setMachineAffinity(newJob, osBase, machineAffinity)
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
Utilities.addXUnitDotNETResults(newJob, "bin/$config/Tests/*TestResults.xml", false)
Utilities.addGithubPRTriggerForBranch(newJob, branch, "$os $config")
}
}