We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb0f80 commit 0813296Copy full SHA for 0813296
.github/workflows/modules-zstd.yml
@@ -75,6 +75,16 @@ jobs:
75
bazel run -c opt $target -- --logtostderr;
76
done
77
78
+ - name: Build and run verilog simulation of the ZSTD module components (opt)
79
+ if: ${{ !cancelled() }}
80
+ run: |
81
+ for target in $(bazel query 'filter(".*_cocotb_test$", kind(rule, //xls/modules/zstd/...))');
82
+ do
83
+ echo "running $target";
84
+ bazel run -c opt $target;
85
+ find sim_build ! -name "*.fst" -type f -exec rm -f {} +;
86
+ done
87
+
88
- name: Build ZSTD place and route targets (opt)
89
if: ${{ !cancelled() }}
90
run: |
0 commit comments