Re-enable server GC & lengthen timeouts
authorWilliam Godbe <william.godbe@comcast.net>
Sat, 6 Feb 2016 00:25:51 +0000 (16:25 -0800)
committerWilliam Godbe <william.godbe@comcast.net>
Tue, 9 Feb 2016 22:26:38 +0000 (14:26 -0800)
Commit migrated from https://github.com/dotnet/coreclr/commit/2bbf9d46f06e80176090df95d9649d107dc2fe1f

src/coreclr/netci.groovy

index d7cf0c9..e4c2a59 100644 (file)
@@ -179,7 +179,7 @@ def static addTriggers(def job, def isPR, def architecture, def os, def configur
                 }
                 break
             case 'pri1':
-                // Pri one gets a daily build, and only for release
+                // Pri one gets a push trigger, and only for release
                 if (architecture == 'x64' && configuration == 'Release') {
                     // We don't expect to see a job generated except in these scenarios
                     assert (os == 'Windows_NT') || (os in Constants.crossList)
@@ -845,12 +845,11 @@ combinedScenarios.each { scenario ->
                     }
                     // Enable Server GC for Ubuntu PR builds
                     def serverGCString = ''
-                    
-                    /* For now, disable server GC since it's causing tests to take too long. May re-enable later with longer timeout.  
+                     
                     if (os == 'Ubuntu' && isPR){
                         serverGCString = '--useServerGC'
                     }
-                    */
+                    
 
                     def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) {
                         // Add parameters for the inputs
@@ -955,10 +954,6 @@ build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
                     }
 
                     Utilities.standardJobSetup(newFlowJob, project, isPR, getFullBranchName(branchName))
-                    //Pri 1 tests need longer timeout
-                    if (scenario == 'pri1') {
-                        Utilities.setJobTimeout(newFlowJob, 240)
-                    }
                     addTriggers(newFlowJob, isPR, architecture, os, configuration, scenario, true)
                 } // configuration
             } // os