summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2016-01-26 21:46:48 -0800
committerjashook <jashoo@microsoft.com>2016-03-07 09:31:26 -0800
commit8e47d470b602e60fce8d779c3d0e36983aa36a36 (patch)
tree1882009575a3b7d447955f15ae5a217305437485 /netci.groovy
parent06bcf2a997da3127847d8c05e151d582f757b7d4 (diff)
downloadcoreclr-8e47d470b602e60fce8d779c3d0e36983aa36a36.tar.gz
coreclr-8e47d470b602e60fce8d779c3d0e36983aa36a36.tar.bz2
coreclr-8e47d470b602e60fce8d779c3d0e36983aa36a36.zip
New x86 excludes and turn on ci testing for x86.
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy11
1 files changed, 7 insertions, 4 deletions
diff --git a/netci.groovy b/netci.groovy
index 7672bcabab..69675e463f 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -123,7 +123,7 @@ def static getJobName(def configuration, def architecture, def os, def scenario,
baseName = architecture.toLowerCase() + '_cross_' + configuration.toLowerCase() + '_' + os.toLowerCase()
break
case 'x86':
- baseName = architecture.toLowerCase() + '_' + configuration.toLowerCase() + '_' + os.toLowerCase()
+ baseName = architecture.toLowerCase() + '_lb_' + configuration.toLowerCase() + '_' + os.toLowerCase()
break
default:
println("Unknown architecture: ${architecture}");
@@ -425,7 +425,7 @@ def static addTriggers(def job, def isPR, def architecture, def os, def configur
// For windows, x86 runs by default
if (os == 'Windows_NT') {
if (configuration != 'Checked') {
- Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Build")
+ Utilities.addGithubPRTrigger(job, "${os} ${architecture} ${configuration} Legacy Backend Build and Test")
}
}
else {
@@ -595,9 +595,12 @@ combinedScenarios.each { scenario ->
buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} TestEnv ${stepScriptLocation}"
}
- else if (architecture == 'x64' || !isPR) {
+ else if (architecture == 'x64') {
buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture}"
}
+ else if (architecture == 'x86') {
+ buildCommands += "tests\\runtest.cmd ${lowerConfiguration} ${architecture} Exclude0 x86_legacy_backend_issues.targets"
+ }
}
// Run the rest of the build
@@ -875,4 +878,4 @@ build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
} // os
} // architecture
} // isPR
-} // scenario \ No newline at end of file
+} // scenario