From 143fa1df61ca0a53d8ce1e854bcfdeb5f3145c74 Mon Sep 17 00:00:00 2001 From: Andon Andonov Date: Fri, 22 Jun 2018 18:11:18 -0700 Subject: [PATCH] Correct testResults path Commit migrated from https://github.com/dotnet/coreclr/commit/ad694c15e8cd0df8d53a8d3359bc7678c754c3c0 --- src/coreclr/netci.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index e43a47d..2125791 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -2224,8 +2224,8 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTests" // Archive and process (only) the test results - Utilities.addArchival(newJob, "%WORKSPACE%bin/Logs/**/testResults.xml") - Utilities.addXUnitDotNETResults(newJob, "%WORKSPACE%/bin/Logs/**/testResults.xml") + Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml") + Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml") } else { def workspaceRelativeFxRoot = "_/fx" -- 2.7.4