diff options
author | Roman Artemev <rartemev@microsoft.com> | 2017-04-25 14:31:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-25 14:31:38 -0700 |
commit | 0f04654b3beda5624f5e03e03b99a15cbce8aaff (patch) | |
tree | a753d79a69e1f8eeca9c3f2f63c302faa4b8bc13 | |
parent | c448f8587c4e18ce93dabce9a717e4d4112c6c99 (diff) | |
parent | f874e420f24028e0bd96b5ab2299696d9e648237 (diff) | |
download | coreclr-0f04654b3beda5624f5e03e03b99a15cbce8aaff.tar.gz coreclr-0f04654b3beda5624f5e03e03b99a15cbce8aaff.tar.bz2 coreclr-0f04654b3beda5624f5e03e03b99a15cbce8aaff.zip |
Merge pull request #11118 from rartemev/issue_10094
Fixed netci.groove scripts to make CentOS and Ubuntu R2R jitstressregs builds worked.
-rwxr-xr-x | netci.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy index 247da038c2..9e0339a366 100755 --- a/netci.groovy +++ b/netci.groovy @@ -2165,7 +2165,7 @@ combinedScenarios.each { scenario -> if (testBuildScenario == 'coverage' || testBuildScenario == 'pri1r2r'|| testBuildScenario == 'gcstress15_pri1r2r') { testBuildScenario = 'pri1' } - else if ( testBuildScenario == 'r2r' || isLongGc(testBuildScenario)) { + else if ( testBuildScenario == 'r2r' || Constants.r2rJitStressScenarios.indexOf(testBuildScenario) != -1 || isLongGc(testBuildScenario)) { testBuildScenario = 'default' } def inputWindowTestsBuildName = '' |