Skip to content

Commit 9c134c6

Browse files
committed
wip
1 parent 81dcdfa commit 9c134c6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/mcl/src/src/mcl/commands/ci_matrix.d

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,12 @@ Package[] nixEvalJobs(string flakeAttrPrefix, string cachixUrl, bool doCheck = t
369369
).writeRecordAsTable(stderr.lockingTextWriter);
370370
}
371371

372-
pipes.stderr.byLine
372+
const stderrLogs = pipes.stderr.byLine
373373
.filter!(line => !uselessWarnings.canFind(line))
374374
.join("\n")
375-
.logWarning;
375+
.idup;
376+
377+
logWarning(stderrLogs);
376378

377379
int status = wait(pipes.pid);
378380
jobFailed = jobFailed || status != 0;

0 commit comments

Comments
 (0)