From b6d317740a2a7a1c02a5e628ab32d1ea77a53fe0 Mon Sep 17 00:00:00 2001 From: Sven Boemer Date: Wed, 23 Nov 2016 09:14:03 -0800 Subject: [PATCH] Fix archiving for jitdiff windows build only jobs The dasm archiving was enabled for all jitdiff scenarios, including the build set up for the ubuntu/osx flow jobs. The dasm artifacts don't exist in build-only scenarios, and this was preventing archiving of the build. --- netci.groovy | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/netci.groovy b/netci.groovy index a6809ea..48d5989 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1960,8 +1960,10 @@ combinedScenarios.each { scenario -> if (scenario == 'jitdiff') { // retrive jit-dasm output for base commit, and run jit-diff - - Utilities.addArchival(newJob, "bin/tests/${osGroup}.${arch}.${configuration}/dasm/**") + if (!isBuildOnly) { + // if this is a build only job, we want to keep the default (build) artifacts for the flow job + Utilities.addArchival(newJob, "bin/tests/${osGroup}.${arch}.${configuration}/dasm/**") + } } if (!isBuildOnly) { -- 2.7.4