Initial commit.
This commit is contained in:
commit
2c860e8009
43 changed files with 12560 additions and 0 deletions
15
cron.php
Normal file
15
cron.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
error_reporting(E_ALL);
|
||||
ini_set('display_errors', 'on');
|
||||
|
||||
require_once('bootstrap.php');
|
||||
|
||||
$store = b8\Store\Factory::getStore('Build');
|
||||
$result = $store->getByStatus(0);
|
||||
|
||||
foreach($result['items'] as $build)
|
||||
{
|
||||
$builder = new PHPCI\Builder($build);
|
||||
$builder->execute();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue