Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2017-04-27 18:37:36 +0300
committerGitHub <noreply@github.com>2017-04-27 18:37:36 +0300
commit34ecd762ec2580515d511e6126c601a4e7f70343 (patch)
tree8f4748b62d17efaccdd9298596502c8877517ed8 /netci.groovy
parentcebef4950f85adcbad486f299158f34b6b3eaf0d (diff)
Remove obsolete perf jobs (#19045)
They submit to helix but don't actually do anything
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy31
1 files changed, 0 insertions, 31 deletions
diff --git a/netci.groovy b/netci.groovy
index 0b5a8ad7e9..52b7636120 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -280,37 +280,6 @@ def targetGroupOsMap = ['netcoreapp': ['Windows 10', 'Windows 7', 'Windows_NT',
}
// **************************
-// Define perf testing. Built locally and submitted to Helix.
-// **************************
-
-// builds with secrets should never be available for pull requests.
-// right now perf tests are only run on Win10 (but can be built on any Windows)
-['Windows 10'].each { osName ->
- ['Debug', 'Release'].each { configurationGroup ->
-
- def newJobName = "perf_${osShortName[osName]}_${configurationGroup.toLowerCase()}"
-
- def newJob = job(Utilities.getFullJobName(project, newJobName, /* isPR */ false)) {
- steps {
- helix("Build.cmd -- /p:Creator=dotnet-bot /p:ArchiveTests=true /p:ConfigurationGroup=${configurationGroup} /p:Configuration=Windows_${configurationGroup} /p:TestDisabled=true /p:EnableCloudTest=true /p:BuildMoniker={uniqueId} /p:TargetQueue=Windows.10.Amd64 /p:TestProduct=CoreFx /p:Branch=master /p:OSGroup=Windows_NT /p:CloudDropAccountName=dotnetbuilddrops /p:CloudResultsAccountName=dotnetjobresults /p:CloudDropAccessToken={CloudDropAccessToken} /p:CloudResultsAccessToken={CloudResultsAccessToken} /p:BuildCompleteConnection={BuildCompleteConnection} /p:BuildIsOfficialConnection={BuildIsOfficialConnection} /p:DocumentDbKey={DocumentDbKey} /p:DocumentDbUri=https://hms.documents.azure.com:443/ /p:FuncTestsDisabled=true /p:Performance=true")
- }
- }
-
- Utilities.setMachineAffinity(newJob, 'Windows_NT', 'latest-or-auto')
-
- Utilities.setMachineAffinity(newJob, 'Windows_NT', 'latest-or-auto')
-
- // Set up standard options.
- Utilities.standardJobSetup(newJob, project, /* isPR */ false, "*/${branch}")
-
- // Set a periodic trigger
- Utilities.addPeriodicTrigger(newJob, '@daily')
-
- Utilities.addPrivatePermissions(newJob)
- }
-}
-
-// **************************
// Define target group vertical builds that will run on every merge.
// **************************
[true, false].each { isPR ->