Skip to content

Commit

Permalink
Merge pull request dotnet#18615 from A-And/CIFXStaging
Browse files Browse the repository at this point in the history
CoreFX CI - Correct testResults path
  • Loading branch information
BruceForstall committed Jun 23, 2018
2 parents e1a6bdb + ad694c1 commit 9bf3435
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 9bf3435

Please sign in to comment.