diff --git a/netci.groovy b/netci.groovy deleted file mode 100644 index 3ab980b5a..000000000 --- a/netci.groovy +++ /dev/null @@ -1,30 +0,0 @@ -// Import the utility functionality. - -import jobs.generation.Utilities; - -def project = GithubProject -def branch = GithubBranchName - -[true, false].each { isPR -> - ['Debug', 'Release', 'Desktop.Debug', 'Desktop.Release'].each { configuration -> - def newJob = job(Utilities.getFullJobName(project, configuration.toLowerCase(), isPR)) { - steps { - batchFile("\"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x86 && build.cmd /p:Configuration=${configuration}") - } - } - - Utilities.setMachineAffinity(newJob, 'Windows_NT', 'latest-or-auto') - Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}") - - if (!configuration.startsWith('Desktop.')) { - Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestResults.xml') - } - - if (isPR) { - Utilities.addGithubPRTriggerForBranch(newJob, branch, "Windows ${configuration}") - } - else { - Utilities.addGithubPushTrigger(newJob) - } - } -}