| ... | @@ -682,9 +682,12 @@ fn runStepNames( | ... | @@ -682,9 +682,12 @@ fn runStepNames( |
| 682 | } | 682 | } |
| 683 | | 683 | |
| 684 | const ttyconf = run.ttyconf; | 684 | const ttyconf = run.ttyconf; |
| 685 | const stderr = run.stderr; | | |
| 686 | | 685 | |
| 687 | if (run.summary != .none) { | 686 | if (run.summary != .none) { |
| | 687 | std.debug.lockStdErr(); |
| | 688 | defer std.debug.unlockStdErr(); |
| | 689 | const stderr = run.stderr; |
| | 690 | |
| 688 | const total_count = success_count + failure_count + pending_count + skipped_count; | 691 | const total_count = success_count + failure_count + pending_count + skipped_count; |
| 689 | ttyconf.setColor(stderr, .cyan) catch {}; | 692 | ttyconf.setColor(stderr, .cyan) catch {}; |
| 690 | stderr.writeAll("Build Summary:") catch {}; | 693 | stderr.writeAll("Build Summary:") catch {}; |