Added allowed fail status for plugins (See build summary)
This commit is contained in:
parent
cb4d7a268e
commit
d54c1978b9
5 changed files with 14 additions and 8 deletions
|
|
@ -21,10 +21,11 @@ class Build extends Model
|
|||
const STAGE_FIXED = 'fixed';
|
||||
const STAGE_BROKEN = 'broken';
|
||||
|
||||
const STATUS_PENDING = 0;
|
||||
const STATUS_RUNNING = 1;
|
||||
const STATUS_SUCCESS = 2;
|
||||
const STATUS_FAILED = 3;
|
||||
const STATUS_PENDING = 0;
|
||||
const STATUS_RUNNING = 1;
|
||||
const STATUS_SUCCESS = 2;
|
||||
const STATUS_FAILED = 3;
|
||||
const STATUS_FAILED_ALLOWED = 4;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue