forked from dotnet/orleans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netci.groovy
30 lines (25 loc) · 902 Bytes
/
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
// Import the utility functionality.
import jobs.generation.Utilities;
def project = GithubProject
def branch = GithubBranchName
// Define build string
def buildString = '''call Build.cmd && Test.cmd'''
// Generate the builds for debug and release
[true, false].each { isPR ->
def newJob = job(Utilities.getFullJobName(project, '', isPR)) {
steps {
batchFile(buildString)
}
}
Utilities.setMachineAffinity(newJob, 'Windows_NT', 'latest-or-auto')
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
Utilities.addXUnitDotNETResults(newJob, '**/xUnit-Results.xml')
// Archive only on commit builds.
if (!isPR) {
Utilities.addArchival(newJob, 'Binaries/**')
Utilities.addGithubPushTrigger(newJob)
}
else {
Utilities.addGithubPRTriggerForBranch(newJob, branch, "Windows Debug and Release")
}
}