Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Re-enable Test Logs and build only test host in CoreFX CI jobs #18677

Merged
merged 1 commit into from
Jun 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2220,13 +2220,12 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
if (doCoreFxTesting) {
if (scenario == 'corefx_innerloop') {
// Create CORE_ROOT and testhost
buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} skipmanaged"
buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTests"
buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} buildtesthostonly"
buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTestsAll"

// CI will report missing logs as a test failure - disable until https://github.com/dotnet/coreclr/pull/18365 is merged
// // Archive and process (only) the test results
// Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml")
// Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml")
// Archive and process (only) the test results
Utilities.addArchival(newJob, "bin/Logs/**/testResults.xml")
Utilities.addXUnitDotNETResults(newJob, "bin/Logs/**/testResults.xml")
}
else {
def workspaceRelativeFxRoot = "_/fx"
Expand Down