Skip to content

Commit

Permalink
Correct testResults path
Browse files Browse the repository at this point in the history
  • Loading branch information
A-And committed Jun 23, 2018
1 parent db4248f commit ad694c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit ad694c1

Please sign in to comment.