[jenkins] Skip mmptest to see if it'll speed up the test run on jenkins. (#248)

This commit is contained in:
Rolf Bjarne Kvinge 2016-06-22 07:12:51 -07:00 коммит произвёл GitHub
Родитель 6521817ec0
Коммит d62295f0bd
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -19,6 +19,7 @@ namespace xharness
public bool IncludeiOS = true;
public bool IncludetvOS = true;
public bool IncludewatchOS = true;
public bool IncludeMmpTest;
public Logs Logs = new Logs ();
public Log MainLog;
@ -174,6 +175,9 @@ namespace xharness
if (!project.IsExecutableProject)
continue;
if (!IncludeMmpTest && project.Path.Contains ("mmptest"))
continue;
BuildToolTask build;
if (project.GenerateVariations) {
build = new MdtoolTask ();