Move ILLink and SizeOnDisk testing to Helix Queue (#20569)
authorMichelle McDaniel <adiaaida@gmail.com>
Wed, 24 Oct 2018 17:51:34 +0000 (10:51 -0700)
committerGitHub <noreply@github.com>
Wed, 24 Oct 2018 17:51:34 +0000 (10:51 -0700)
perf.groovy

index ac194acb8a86e849ae2a72fe05ea1601267ebf5b..adb4af36d96dd820d0a510d0f51aed1629668e8f 100644 (file)
@@ -753,6 +753,7 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) {
     ['x64', 'x86'].each { arch ->
         def architecture = arch
         def newJob = job(Utilities.getFullJobName(project, "sizeondisk_${arch}", false)) {
+            label('Windows.Amd64.ClientRS4.DevEx.15.8.Perf')
 
             wrappers {
                 credentialsBinding {
@@ -802,8 +803,6 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) {
             }
         }
 
-        Utilities.setMachineAffinity(newJob, "Windows_NT", '20170427-elevated')
-
         def archiveSettings = new ArchivalSettings()
         archiveSettings.addFiles('bin/toArchive/**')
         archiveSettings.addFiles('machinedata.json')
@@ -839,6 +838,7 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) {
                 ['full_opt'].each { opt_level ->
                     def architecture = arch
                     def newJob = job(Utilities.getFullJobName(project, "perf_illink_${os}_${arch}_${opt_level}_${jit}", isPR)) {
+                        label('Windows.Amd64.ClientRS4.DevEx.15.8.Perf')
 
                         def testEnv = ""
                         wrappers {
@@ -900,7 +900,6 @@ def static getFullThroughputJobName(def project, def os, def arch, def isPR) {
                     archiveSettings.setAlwaysArchive()
 
                     // Set the label (currently we are only measuring size, therefore we are running on VM).
-                    Utilities.setMachineAffinity(newJob, "Windows_NT", '20170427-elevated')
                     Utilities.addArchival(newJob, archiveSettings)
                     Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")