@@ -2261,12 +2261,12 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
2261
2261
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} "
2262
2262
2263
2263
// 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" )
2266
2266
2267
2267
// Archive additional build stuff to diagnose why my attempt at fault injection isn't causing CI to fail
2268
2268
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 )
2270
2270
}
2271
2271
}
2272
2272
else if (isGcReliabilityFramework(scenario)) {
@@ -2476,8 +2476,8 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
2476
2476
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} "
2477
2477
2478
2478
// 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" )
2481
2481
}
2482
2482
}
2483
2483
break
0 commit comments