summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2016-11-30 10:29:59 -0800
committerSven Boemer <sbomer@gmail.com>2017-01-09 09:09:57 -0800
commit05327a2cceb061cdcad660b802e5f6c448f35dd1 (patch)
treec618fc6a02dee541691eaf79cad13d82ca567de6 /netci.groovy
parentee20dcadd8f435cb5c2f645f5fbfb664486c19ff (diff)
downloadcoreclr-05327a2cceb061cdcad660b802e5f6c448f35dd1.tar.gz
coreclr-05327a2cceb061cdcad660b802e5f6c448f35dd1.tar.bz2
coreclr-05327a2cceb061cdcad660b802e5f6c448f35dd1.zip
Fix some problems with the ubuntu dasm output
- Re-enable the default build archiving in jitdiff scenarios so that the windows _bld job will publish correct build artifacts for the ubuntu_jitdiff_tst job to consume. - Use relative paths in the generated scripts to avoid drive letters in bash scripts. - Fix exit code reporting in bash wrapper scripts. - Upgrade jit-dasm version to use version with improved error handling - Upgrade jit-analyze version to use same dependencies as jit-dasm
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index aefc0a17c5..f7d12adbfb 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1877,7 +1877,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
}
if (scenario == 'gcstress15_pri1r2r')
{
- gcstressStr = 'gcstresslevel 0xF'
+ gcstressStr = 'gcstresslevel 0xF'
}
if (scenario == 'jitdiff')
@@ -1934,7 +1934,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
// 10s of thousands of files around.
buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${arch}.${configuration}', '.\\bin\\tests\\tests.zip')\"";
- if (!Constants.jitStressModeScenarios.containsKey(scenario) && scenario != 'jitdiff') {
+ if (!Constants.jitStressModeScenarios.containsKey(scenario)) {
// For windows, pull full test results and test drops for x86/x64.
// No need to pull for stress mode scenarios (downstream builds use the default scenario)
Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip")