Merge pull request #2580 from nattress/groovymultimodule

Staging commit for upcoming multi-module CI change
This commit is contained in:
Simon Nattress 2017-01-25 09:39:35 -08:00 коммит произвёл GitHub
Родитель 94216a23f6 54213f9bf1
Коммит f2a054fd3d
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -52,6 +52,7 @@ def osList = ['Ubuntu', 'OSX', 'Windows_NT']
if (os == 'Windows_NT') {
// Indicates that a batch script should be run with the build string (see above)
batchFile(buildString)
batchFile("tests\\runtest.cmd /multimodule")
if (configuration == 'Debug') {
if (isPR) {

Просмотреть файл

@ -15,6 +15,7 @@ set CoreRT_CoreCLRTargetsFile=
:ArgLoop
if "%1" == "" goto :ArgsDone
if /i "%1" == "/?" goto :Usage
if /i "%1" == "/multimodule" (exit /b 0)
if /i "%1" == "x64" (set CoreRT_BuildArch=x64&&shift&goto ArgLoop)
if /i "%1" == "x86" (set CoreRT_BuildArch=x86&&shift&goto ArgLoop)
if /i "%1" == "arm" (set CoreRT_BuildArch=arm&&shift&goto ArgLoop)