Skip to content

Commit

Permalink
ci/eval: Fail on non-empty stderr
Browse files Browse the repository at this point in the history
Just like the channel eval requires.
  • Loading branch information
infinisil committed Feb 11, 2025
1 parent 0344bd7 commit 7c62a76
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ci/eval/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ let
echo "Evaluation failed with exit code $exitCode"
# This immediately halts all xargs processes
kill $PPID
elif [[ -s "$outputDir/stderr/$myChunk" ]]; then
echo "Nixpkgs on $system evaluated with warnings, aborting"
kill $PPID
fi
'';
in
Expand Down

0 comments on commit 7c62a76

Please sign in to comment.