jobset logs

This commit is contained in:
ahuston-0 2024-04-20 16:33:13 -04:00 committed by Alice Huston
parent 7ce07278f4
commit b9c449df4d

View File

@ -89,16 +89,15 @@ let
}; };
in in
{ {
jobsets = jobsets = jobs;
jobs # // pkgs.runCommand "spec-jobsets.json" { } ''
// pkgs.runCommand "spec-jobsets.json" { } '' # cat >$out <<EOF
cat >$out <<EOF # ${jobs}
${jobs} # EOF
EOF # # This is to get nice .jobsets build logs on Hydra
# This is to get nice .jobsets build logs on Hydra # cat >tmp <<EOF
cat >tmp <<EOF # ${builtins.toJSON log}
${builtins.toJSON log} # EOF
EOF # ${pkgs.jq}/bin/jq . tmp
${pkgs.jq}/bin/jq . tmp # '';
'';
} }