summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorJosé Rivero <jorive@microsoft.com>2017-09-12 08:15:37 -0700
committerGitHub <noreply@github.com>2017-09-12 08:15:37 -0700
commit3297fd43b6d78c025e3befa3b6242229deaa9094 (patch)
tree5cfd6252bfb4f0f42e6083c85c9c178a8a6f7b2b /perf.groovy
parent18ab3567e2ea6e2a385527bb247b0eec32a995cb (diff)
downloadcoreclr-3297fd43b6d78c025e3befa3b6242229deaa9094.tar.gz
coreclr-3297fd43b6d78c025e3befa3b6242229deaa9094.tar.bz2
coreclr-3297fd43b6d78c025e3befa3b6242229deaa9094.zip
Fixing archiving of Linux perf artifacts. (#13911)
- Previous change did not fix archiving artifacts
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy3
1 files changed, 2 insertions, 1 deletions
diff --git a/perf.groovy b/perf.groovy
index da0798ffa0..957af67106 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -363,7 +363,8 @@ def static getFullPerfJobName(def project, def os, def isPR) {
--generatebenchviewdata=\"\${WORKSPACE}/tests/scripts/Microsoft.BenchView.JSONFormat/tools\" \\
--stabilityPrefix=\"taskset 0x00000002 nice --adjustment=-10\" \\
--uploadToBenchview""")
- shell("rsync -a --rsync-path=\"mkdir -p bin/toArchive/sandbox/Logs/ && rsync\" bin/sandbox/Logs/Perf-*.* bin/toArchive/sandbox/Logs/")
+ shell("mkdir -p bin/toArchive/sandbox/Logs/")
+ shell("rsync -a bin/sandbox/Logs/Perf-*.* bin/toArchive/sandbox/Logs/")
}
}