Adding support to check for .phpci.yml so the file can be 'hidden' as with other CI systems such as Travis, StyleCI and Codeclimate

This commit is contained in:
Stephen Ball 2015-10-04 17:38:03 +01:00
parent aaf93ddd7d
commit 9ee27bad37
2 changed files with 6 additions and 0 deletions

View file

@ -104,6 +104,11 @@ class Build extends BuildBase
$build_config = file_get_contents($buildPath . '/phpci.yml');
}
// Try .phpci.yml
if (empty($build_config) && is_file($buildPath . '/.phpci.yml')) {
$build_config = file_get_contents($buildPath . '/.phpci.yml');
}
// Try getting the project build config from the database:
if (empty($build_config)) {
$build_config = $this->getProject()->getBuildConfig();

View file

@ -151,6 +151,7 @@ class TechnicalDebt implements PHPCI\Plugin, PHPCI\ZeroConfigPlugin
$ignores = $this->ignore;
$ignores[] = 'phpci.yml';
$ignores[] = '.phpci.yml';
foreach ($iterator as $file) {
$filePath = $file->getRealPath();