Add separate build step status codes for cached failures and timeouts

This commit is contained in:
Eelco Dolstra
2013-05-09 22:13:01 +00:00
parent a6d8566faf
commit 102359bf44
3 changed files with 26 additions and 9 deletions

View File

@ -208,7 +208,13 @@ create table BuildSteps (
busy integer not null,
status integer, -- 0 = success, 1 = failed
-- Status codes:
-- 0 = succeeded
-- 1 = failed normally
-- 4 = aborted
-- 7 = timed out
-- 8 = cached failure
status integer,
errorMsg text,