We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 035908b commit db33047Copy full SHA for db33047
.github/workflows/main.yml
@@ -56,7 +56,7 @@ jobs:
56
ref: ${{ github.event.pull_request.head.sha }}
57
- name: "Run VCS"
58
run: |
59
- nix build '.#gcd.vcs.tests.simple-sim' --impure -L
+ nix build '.#gcd.vcs.tests.simple-sim' --impure -L && $(exit $(cat result/urgReport/asserts.txt))
60
61
run-verilator:
62
name: "Run Verilator"
templates/chisel/nix/gcd/vcs.nix
@@ -69,8 +69,11 @@ stdenv.mkDerivation (finalAttr: {
69
export DATA_ONLY=1
70
${finalAttr.finalPackage}/bin/${binName}
71
72
+ ${vcs-fhs-env}/bin/vcs-fhs-env -c "urg -dir "$GCD_SIM_RESULT_DIR"/result/${coverageName} -format text"
73
+
74
mkdir -p "$out"
75
cp -vr "$GCD_SIM_RESULT_DIR"/result/* "$out/"
76
+ cp -vr ./urgReport "$out/"
77
'';
78
};
79
0 commit comments