Add a error type for "unsupported system type"

This commit is contained in:
Eelco Dolstra
2015-06-15 15:07:04 +02:00
parent 541fbd62cc
commit 5019fceb20
4 changed files with 25 additions and 15 deletions

View File

@ -180,6 +180,7 @@ create table Builds (
-- 4 = build cancelled (removed from queue; never built)
-- 5 = build not done because a dependency failed previously (obsolete)
-- 6 = failure with output
-- 9 = unsupported system type
buildStatus integer,
errorMsg text, -- error message in case of a Nix failure
@ -227,6 +228,7 @@ create table BuildSteps (
-- 4 = aborted
-- 7 = timed out
-- 8 = cached failure
-- 9 = unsupported system type
status integer,
errorMsg text,