0.2.1 (2023-03-15)
- Added canceled Build task status
This commit is contained in:
parent
564571adbe
commit
86dddb30d6
@ -21,6 +21,7 @@ class BuildTaskEnum(IntEnum):
|
|||||||
completed = 2
|
completed = 2
|
||||||
failed = 3
|
failed = 3
|
||||||
excluded = 4
|
excluded = 4
|
||||||
|
canceled = 5
|
||||||
|
|
||||||
|
|
||||||
class WebNodeStatsEnum(IntEnum):
|
class WebNodeStatsEnum(IntEnum):
|
||||||
|
@ -11,6 +11,10 @@ ALTER TABLE build_node_stats
|
|||||||
ADD CONSTRAINT build_node_stats_unique UNIQUE (build_task_id, stat_name_id);
|
ADD CONSTRAINT build_node_stats_unique UNIQUE (build_task_id, stat_name_id);
|
||||||
|
|
||||||
|
|
||||||
|
INSERT INTO build_task_status_enum (id, value)
|
||||||
|
VALUES
|
||||||
|
(5, 'canceled');
|
||||||
|
|
||||||
UPDATE schema_version
|
UPDATE schema_version
|
||||||
SET version = 2;
|
SET version = 2;
|
||||||
|
|
||||||
|
@ -5,3 +5,6 @@ First version
|
|||||||
- New parameter start_from
|
- New parameter start_from
|
||||||
- Moved to double persition for timestamps
|
- Moved to double persition for timestamps
|
||||||
- Added metrics for build steps
|
- Added metrics for build steps
|
||||||
|
|
||||||
|
0.2.1 (2023-03-15)
|
||||||
|
- Added canceled Build task status
|
Loading…
Reference in New Issue
Block a user