aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJack Koenig2021-12-17 22:40:46 -0800
committerGitHub2021-12-18 01:40:46 -0500
commitc00a4ebb0608f9ef98729e9b610a2678be2bc4fd (patch)
tree7fdd84481327225d2320a3f6f23320e7cb13faa6 /.github
parent57ce615d73995a29f89c2f9b11482fe80442439b (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')
-rw-r--r--.github/workflows/test.yml5
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