Added Gitlab support

This commit is contained in:
a.cianfarani 2013-08-23 16:05:12 +02:00
commit 47be59ae46
4 changed files with 123 additions and 1 deletions

View file

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