From ed6e470bdb16d3190fdca66d4e0e2eb2a415f223 Mon Sep 17 00:00:00 2001 From: Andon Andonov Date: Sun, 24 Jun 2018 22:45:27 -0700 Subject: [PATCH] Remove test logs (dotnet/coreclr#18621) Commit migrated from https://github.com/dotnet/coreclr/commit/556a5fa3e898bbaad3516b55875074a5c265327a --- src/coreclr/netci.groovy | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index a744a27..0d8e351 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -2223,9 +2223,10 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} skipmanaged" buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTests" - // Archive and process (only) the test results - Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml") - Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml") + // 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") } else { def workspaceRelativeFxRoot = "_/fx" -- 2.7.4