Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Xearty committed Oct 23, 2024
1 parent 81dcdfa commit 9c134c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/mcl/src/src/mcl/commands/ci_matrix.d
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,12 @@ Package[] nixEvalJobs(string flakeAttrPrefix, string cachixUrl, bool doCheck = t
).writeRecordAsTable(stderr.lockingTextWriter);
}

pipes.stderr.byLine
const stderrLogs = pipes.stderr.byLine
.filter!(line => !uselessWarnings.canFind(line))
.join("\n")
.logWarning;
.idup;

logWarning(stderrLogs);

int status = wait(pipes.pid);
jobFailed = jobFailed || status != 0;
Expand Down

0 comments on commit 9c134c6

Please sign in to comment.