Mercurial build support

This commit is contained in:
Pavel Gopanenko 2013-09-04 19:54:26 +07:00
commit e86852efa5
3 changed files with 79 additions and 8 deletions

View file

@ -43,6 +43,9 @@ class BuildFactory
case 'gitlab':
$type = 'GitlabBuild';
break;
case 'hg':
$type = 'MercurialBuild';
break;
}
$type = '\\PHPCI\\Model\\Build\\' . $type;