Fix number formatting exception with empty NumberGroupSizes array (#18221) (#18667)
[platform/upstream/coreclr.git] / perf.groovy
index 2ae766f..c65db22 100644 (file)
@@ -31,7 +31,7 @@ def static getOSGroup(def os) {
         ['x64', 'x86'].each { arch ->
             [true, false].each { isSmoketest ->
                 ['ryujit'].each { jit ->
-                    ['full_opt', 'min_opt'].each { opt_level ->
+                    ['full_opt'].each { opt_level ->
 
                         def architecture = arch
                         def jobName = isSmoketest ? "perf_perflab_${os}_${arch}_${opt_level}_${jit}_smoketest" : "perf_perflab_${os}_${arch}_${opt_level}_${jit}"
@@ -173,7 +173,7 @@ def static getOSGroup(def os) {
         ['x64', 'x86'].each { arch ->
             ['ryujit'].each { jit ->
                 [true, false].each { pgo_optimized ->
-                    ['full_opt', 'min_opt'].each { opt_level ->
+                    ['full_opt'].each { opt_level ->
                         def architecture = arch
 
                         pgo_build = ""
@@ -430,8 +430,8 @@ def static getFullThroughputJobName(def project, def os, def isPR) {
     }
 
     // Actual perf testing on the following OSes
-    def throughputOSList = ['Ubuntu14.04']
-    def throughputOptLevelList = ['full_opt', 'min_opt']
+    def throughputOSList = ['Ubuntu16.04']
+    def throughputOptLevelList = ['full_opt']
 
     def throughputOSOptLevelList = []
 
@@ -556,7 +556,7 @@ parallel(
     ['Windows_NT'].each { os ->
         ['x64', 'x86'].each { arch ->
             ['ryujit'].each { jit ->
-                ['full_opt', 'min_opt', 'tiered'].each { opt_level ->
+                ['full_opt'].each { opt_level ->
                     def architecture = arch
                     def newJob = job(Utilities.getFullJobName(project, "perf_scenarios_${os}_${arch}_${opt_level}_${jit}", isPR)) {