Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/verify-std-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,24 @@ jobs:
-Z mem-predicates -Z loop-contracts --enable-unstable --cbmc-args --object-bits 12

# If the head failed, check if it's a new failure.
- name: Checkout base
- name: Checkout BASE
working-directory: kani
if: steps.check-head.outcome != 'success' && github.event_name == 'pull_request'
run: |
BASE_REF=${{ github.event.pull_request.base.sha }}
git checkout ${BASE_REF}

- name: Setup Kani Dependencies BASE
uses: ./kani/.github/actions/setup
if: steps.check-head.outcome != 'success' && github.event_name == 'pull_request'
with:
os: ${{ matrix.os }}
kani_dir: kani

- name: Build Kani BASE
working-directory: kani
if: steps.check-head.outcome != 'success' && github.event_name == 'pull_request'
run: |
cargo build-dev

- name: Run verification with BASE
Expand Down
Loading