summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2017-01-11 13:32:56 -0800
committerGitHub <noreply@github.com>2017-01-11 13:32:56 -0800
commitbaa998029e27b5927122d40f3a3a208e6e728421 (patch)
treece6ffc8d017ae7c26948e3cd34517a165e0fa5d1 /netci.groovy
parentc3673afaaa3c18495c7b3941c20d82fc9a71a873 (diff)
parent05327a2cceb061cdcad660b802e5f6c448f35dd1 (diff)
downloadcoreclr-baa998029e27b5927122d40f3a3a208e6e728421.tar.gz
coreclr-baa998029e27b5927122d40f3a3a208e6e728421.tar.bz2
coreclr-baa998029e27b5927122d40f3a3a208e6e728421.zip
Merge pull request #8570 from sbomer/dasm_automation
Fix some problems with the ubuntu dasm output
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 6057fbc92c..94104b51c9 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1881,7 +1881,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')
@@ -1938,7 +1938,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")