Skip to content

Commit a0da3fe

Browse files
Merge pull request dotnet#20890 from BruceForstall/FixMoreFxPaths
Fix more CoreFx 'artifacts' paths
2 parents 06114b7 + f68bd89 commit a0da3fe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

netci.groovy

+5-5
Original file line numberDiff line numberDiff line change
@@ -2261,12 +2261,12 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
22612261
buildCommands += "python -u %WORKSPACE%\\tests\\scripts\\run-corefx-tests.py -arch ${arch} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${fxBranch} -env_script ${envScriptPath}"
22622262

22632263
// Archive and process (only) the test results
2264-
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
2265-
Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
2264+
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
2265+
Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
22662266

22672267
//Archive additional build stuff to diagnose why my attempt at fault injection isn't causing CI to fail
22682268
Utilities.addArchival(newJob, "SetStressModes.bat", "", true, false)
2269-
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/testhost/**", "", true, false)
2269+
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/testhost/**", "", true, false)
22702270
}
22712271
}
22722272
else if (isGcReliabilityFramework(scenario)) {
@@ -2476,8 +2476,8 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
24762476
buildCommands += "python -u \$WORKSPACE/tests/scripts/run-corefx-tests.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${fxBranch} -env_script ${scriptFileName}"
24772477

24782478
// Archive and process (only) the test results
2479-
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
2480-
Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/bin/**/testResults.xml")
2479+
Utilities.addArchival(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
2480+
Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml")
24812481
}
24822482
}
24832483
break

0 commit comments

Comments
 (0)