From: Bruce Forstall Date: Mon, 4 Feb 2019 21:30:12 +0000 (-0800) Subject: Always archive build logs X-Git-Tag: submit/tizen/20210909.063632~11030^2~2599^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d436fc03ac57c09d83869f87ef97a044dfb5cbdd;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Always archive build logs Even if the build fails. Add archiving in more cases where it was missing. Commit migrated from https://github.com/dotnet/coreclr/commit/34003a54a06c3530d34676a54a35c9a6b55eec33 --- diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index a03a0cb..00d42d1 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -2244,6 +2244,9 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR Utilities.addXUnitDotNETResults(newJob, 'bin/**/TestRun*.xml', true) } } + + // Archive the logs, even if the build failed (which is when they are most interesting). + Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false) break case 'arm': case 'arm64': @@ -2293,6 +2296,9 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR // Add archival. Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**") } + + // Archive the logs, even if the build failed (which is when they are most interesting). + Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false) break default: println("Unknown architecture: ${architecture}"); @@ -2414,6 +2420,9 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR Utilities.addXUnitDotNETResults(newJob, "${workspaceRelativeFxRoot}/artifacts/bin/**/testResults.xml") } } + + // Archive the logs, even if the build failed (which is when they are most interesting). + Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false) break case 'armem': // Emulator cross builds for ARM runs on Tizen currently @@ -2537,8 +2546,8 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR Utilities.addArchival(newJob, "${testArtifactsTgzFileName}", "") } - // Archive the build logs from both product and test builds. - Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err", "") + // Archive the logs, even if the build failed (which is when they are most interesting). + Utilities.addArchival(newJob, "bin/Logs/*.log,bin/Logs/*.wrn,bin/Logs/*.err", "", /* doNotFailIfNothingArchived */ true, /* archiveOnlyIfSuccessful */ false) // We need to clean up the build machines; the docker build leaves newly built files with root permission, which // the cleanup task in Jenkins can't remove.