Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Dec 2, 2024
1 parent 013143f commit f243ac1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
11 changes: 8 additions & 3 deletions ci/eval/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,18 @@ let
}
''
mkdir $out
jq -n -f ${./compare.jq} \
jq -n -f ${./compare-outpaths.jq} \
--slurpfile before ${beforeResultDir}/outpaths.json \
--slurpfile after ${afterResultDir}/outpaths.json \
> $out/changed-paths.json
jq -n -f ${./generate-step-summary.jq} < $out/changed-paths.json > $out/step-summary.md
# TODO: Compare eval stats
jq -n -f ${./compare-eval-stats.jq} \
--slurpfile before ${beforeResultDir}/outpaths.json \
--slurpfile after ${afterResultDir}/outpaths.json \
> $out/changed-paths.json
jq -n -f ${./changed-paths-markdown.jq} < $out/changed-paths.json > $out/step-summary.md
jq -n -f ${./eval-stats-markdown.jq} < $out/changed-paths.json >> $out/step-summary.md
'';

full =
Expand Down

0 comments on commit f243ac1

Please sign in to comment.