summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorAndon Andonov <anandono@microsoft.com>2018-06-27 16:23:37 -0700
committerGitHub <noreply@github.com>2018-06-27 16:23:37 -0700
commit634b609ee641980baa8d44160d4701ab94daec49 (patch)
treef5c472c9fbc943ba1dc1f8617ba77ead11a503a6 /netci.groovy
parent7e6c6cef692da6c642ca4cd39d546c9a2b823a0a (diff)
downloadcoreclr-634b609ee641980baa8d44160d4701ab94daec49.tar.gz
coreclr-634b609ee641980baa8d44160d4701ab94daec49.tar.bz2
coreclr-634b609ee641980baa8d44160d4701ab94daec49.zip
Modify netci definition (#18677)
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy11
1 files changed, 5 insertions, 6 deletions
diff --git a/netci.groovy b/netci.groovy
index 0d8e3516c2..11aa4a5484 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -2220,13 +2220,12 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
if (doCoreFxTesting) {
if (scenario == 'corefx_innerloop') {
// Create CORE_ROOT and testhost
- buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} skipmanaged"
- buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTests"
+ buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} buildtesthostonly"
+ buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTestsAll"
- // CI will report missing logs as a test failure - disable until https://github.com/dotnet/coreclr/pull/18365 is merged
- // // Archive and process (only) the test results
- // Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml")
- // Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml")
+ // Archive and process (only) the test results
+ Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml")
+ Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml")
}
else {
def workspaceRelativeFxRoot = "_/fx"