Re-implement log size limits

The old queue runner already had this. However, we now store "log
limit exceeded" as a separate status code in the database.
This commit is contained in:
Eelco Dolstra
2015-10-06 17:35:08 +02:00
parent 82504fe010
commit 8e8e31ce86
6 changed files with 25 additions and 8 deletions

View File

@@ -30,6 +30,7 @@ typedef enum {
bsFailedWithOutput = 6,
bsTimedOut = 7,
bsUnsupported = 9,
bsLogLimitExceeded = 10,
} BuildStatus;
@@ -40,6 +41,7 @@ typedef enum {
bssTimedOut = 7,
bssCachedFailure = 8,
bssUnsupported = 9,
bssLogLimitExceeded = 10,
bssBusy = 100, // not stored
} BuildStepStatus;