summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2016-11-23 09:14:03 -0800
committerSven Boemer <sbomer@gmail.com>2016-11-23 09:14:03 -0800
commitb6d317740a2a7a1c02a5e628ab32d1ea77a53fe0 (patch)
treec30569ba97319dcbea34d86d6df27910c8681d89 /netci.groovy
parent965e50d7ee6f860fd71d40dd74af74b87dcc930b (diff)
downloadcoreclr-b6d317740a2a7a1c02a5e628ab32d1ea77a53fe0.tar.gz
coreclr-b6d317740a2a7a1c02a5e628ab32d1ea77a53fe0.tar.bz2
coreclr-b6d317740a2a7a1c02a5e628ab32d1ea77a53fe0.zip
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.
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy6
1 files changed, 4 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index a6809eaa91..48d59890d5 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) {