We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb5c33d commit 38645deCopy full SHA for 38645de
check_times.py
@@ -60,6 +60,13 @@ def calc_time(lines: list[str]) -> None:
60
if in_progress and ": Build done " in line:
61
in_progress = False
62
63
+ if ": Full build done" in line:
64
+ timestamp = f"{line[:16]} UTC"
65
+ _, fmt_duration = line.removesuffix(").").split("(")
66
+ print(
67
+ f"{timestamp: <20} | --FULL- | -BUILD-- | {fmt_duration :<14} | -----------"
68
+ )
69
+
70
if in_progress:
71
start_timestamp = f"{in_progress_line[:16]} UTC"
72
language, version = in_progress_line.split(" ")[3].removesuffix(":").split("/")
0 commit comments