Skip to content

Commit

Permalink
fix(mcl/nixEvalJobs): Properly filter useless warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
PetarKirov committed Jan 23, 2025
1 parent 1d3e8ee commit 0bb76dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mcl/src/src/mcl/commands/ci_matrix.d
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ Package[] nixEvalJobs(string flakeAttrPrefix, string cachixUrl, bool doCheck = t
})(false);

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

logWarning(stderrLogs);
Expand Down

0 comments on commit 0bb76dd

Please sign in to comment.