summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorSmile Wei <xiwe@microsoft.com>2016-08-03 15:13:59 -0700
committerSmile Wei <xiwe@microsoft.com>2016-08-03 15:13:59 -0700
commitb4c4b91b27cf49dcf5829af84455df5fca24f3e9 (patch)
treec28000a0e81b44545d2d57d0e3bbde74cf45fafe /perf.groovy
parentae7efddb3006eeb88f46c37c352a2c734316e60e (diff)
downloadcoreclr-b4c4b91b27cf49dcf5829af84455df5fca24f3e9.tar.gz
coreclr-b4c4b91b27cf49dcf5829af84455df5fca24f3e9.tar.bz2
coreclr-b4c4b91b27cf49dcf5829af84455df5fca24f3e9.zip
Revert "Automate the perf data collection for JIT CodeQuality benchmarks on Windows."
This reverts commit ae7efddb3006eeb88f46c37c352a2c734316e60e.
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy22
1 files changed, 0 insertions, 22 deletions
diff --git a/perf.groovy b/perf.groovy
deleted file mode 100644
index b4e865a62e..0000000000
--- a/perf.groovy
+++ /dev/null
@@ -1,22 +0,0 @@
-[true, false].each { isPR ->
- [‘Windows_NT’].each { os ->
- def newJob = job(Utilities.getFullJobName(project, PERF JOB NAME, isPR)) {
- // Set the label.
- steps {
- // Batch
- batchFile("build-product.cmd debug x64")
- batchFile("run-xunit-perf.cmd")
- }
- }
-
- Utilities.setMachineAffinity(newJob, os, 'latest-or-auto') // Just run against Windows_NT VM’s for now.
- Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
- if (isPR) {
- Utilities.addGithubPRTriggerForBranch(newJob, branch, "${os} Perf Tests") // Add a PR trigger.
- }
- else {
- // Set a push trigger
- Utilities.addGithubPushTrigger(newJob)
- }
- }
-}