diff options
author | William Godbe <wigodbe@microsoft.com> | 2015-12-31 15:52:57 -0800 |
---|---|---|
committer | William Godbe <wigodbe@microsoft.com> | 2015-12-31 15:52:57 -0800 |
commit | a9dc13887582351bcb2796b1be0c6a23ced07642 (patch) | |
tree | 11e4981479990e6b6dd714a48ea26031c4502d10 | |
parent | 3b07ba4d028957fc4c6e07eba0f018e5ca68697e (diff) | |
parent | c4592a40e324a3040f76251ae19a83ee8d3c9f48 (diff) | |
download | coreclr-a9dc13887582351bcb2796b1be0c6a23ced07642.tar.gz coreclr-a9dc13887582351bcb2796b1be0c6a23ced07642.tar.bz2 coreclr-a9dc13887582351bcb2796b1be0c6a23ced07642.zip |
Merge pull request #2497 from wtgodbe/nightly2
Priority 1 tests for OSX & Linux x64 Release builds should now run daily (fixed)
-rw-r--r-- | netci.groovy | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/netci.groovy b/netci.groovy index 8d03f085f4..65aab2f893 100644 --- a/netci.groovy +++ b/netci.groovy @@ -331,18 +331,15 @@ def static addPRTrigger(def job, def architecture, def os, def configuration, is def jobName = getBuildJobName(configuration, architecture, os) + "_tst" def inputCoreCLRBuildName = Utilities.getFolderName(project) + '/' + Utilities.getFullJobName(project, getBuildJobName(configuration, architecture, os), isPR) + def name_suffix = "" if (buildPri1Tests) { - def inputWindowTestsBuildName = Utilities.getFolderName(project) + '/' + - Utilities.getFullJobName(project, getBuildJobName(configuration, architecture, 'windows_nt') + "_pri1", isPR) - } - else - { - def inputWindowTestsBuildName = Utilities.getFolderName(project) + '/' + - Utilities.getFullJobName(project, getBuildJobName(configuration, architecture, 'windows_nt'), isPR) + name_suffix = "_pri1"; } + def inputWindowTestsBuildName = Utilities.getFolderName(project) + '/' + + Utilities.getFullJobName(project, getBuildJobName(configuration, architecture, 'windows_nt') + name_suffix, isPR) - def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) { + def newJob = job(Utilities.getFullJobName(project, jobName, isPR) + name_suffix) { // Add parameters for the inputs parameters { @@ -416,7 +413,7 @@ def static addPRTrigger(def job, def architecture, def os, def configuration, is // Linux CoreCLR test def flowJobName = getBuildJobName(configuration, architecture, os) + "_flow" def fullTestJobName = Utilities.getFolderName(project) + '/' + newJob.name - def newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR)) { + def newFlowJob = buildFlowJob(Utilities.getFullJobName(project, flowJobName, isPR) + name_suffix) { buildFlow(""" // Build the input jobs in parallel parallel ( |