diff options
| author | Jack Koenig | 2021-12-17 22:40:46 -0800 |
|---|---|---|
| committer | GitHub | 2021-12-18 01:40:46 -0500 |
| commit | c00a4ebb0608f9ef98729e9b610a2678be2bc4fd (patch) | |
| tree | 7fdd84481327225d2320a3f6f23320e7cb13faa6 /.github/workflows | |
| parent | 57ce615d73995a29f89c2f9b11482fe80442439b (diff) | |
Fix width of signed addition when input to mux (#2440)
Fix bugs related to arithmetic ops inlined into a mux leg. Add formal
equivalence checks to lock in this behavior.
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@sifive.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d5d4988..d50137ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -90,7 +90,10 @@ jobs: # By having this "if" here, this job returns success so that all_tests_passed will succeed too if: github.event_name == 'pull_request' && ! contains(github.event.pull_request.labels.*.name, 'Skip Formal CI') - run: ./.run_formal_checks.sh ${{ matrix.design }} + run: | + echo ${{ github.event_name }} + echo ${{ github.event.pull_request.labels }} + ./.run_formal_checks.sh ${{ matrix.design }} # Sentinel job to simplify how we specify which checks need to pass in branch # protection and in Mergify |
