From af65345e8cff765299aa04e131c504dda4d55b83 Mon Sep 17 00:00:00 2001 From: Andrew Wang Date: Mon, 8 Apr 2019 15:57:28 -0700 Subject: [PATCH] Removing netci.groovy --- netci.groovy | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 netci.groovy 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) - } - } -}