Skip to content

Commit

Permalink
[ci] run urg report on all tests output
Browse files Browse the repository at this point in the history
Signed-off-by: Avimitin <[email protected]>
  • Loading branch information
Avimitin authored and sequencer committed Oct 7, 2024
1 parent 51d96dc commit bb244c5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion nix/t1/run/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,21 @@ let
fi
cp -v ${caseDrv}/offline-check-* "$_caseOutDir"/
if [ -d ${caseDrv}/cm.vdb ]; then
cp -vr ${caseDrv}/cm.vdb "$_caseOutDir"/
fi
'')
allCasesResult);
in
runCommand "catch-${configName}-all-emu-result-for-ci" { } script;

_vcsEmuResult = runCommand "get-vcs-emu-result" { __noChroot = true; emuOutput = _getAllResult "vcs-emu"; } ''
cp -vr $emuOutput $out
chmod -R u+w $out
${vcs-emu.vcs-fhs-env}/bin/vcs-fhs-env -c "urg -dir $emuOutput/*/cm.vdb -format text"
cp -vr urgReport $out/
'';
in
emuAttrs // { _vcsEmuResult = _getAllResult "vcs-emu"; }
emuAttrs // { inherit _vcsEmuResult; }

0 comments on commit bb244c5

Please sign in to comment.