-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Issue:** The proofs broke unexpectedly when CBMC 6.0.0 was released, since we were using "latest". We pinned the version back to 5.95.1 in a [recent PR](#1124) to get CI working again. **Description of changes:** - Upgrade to CBMC 6.0.0 - For all tools used in proofs, stop using "latest". Pin the exact version, so we're not caught off-guard by unexpected upgrades again in the future - Fix proof code to work with CBMC 6
- Loading branch information
Showing
3 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
cadical-tag: latest | ||
cbmc-version: "5.95.1" | ||
cbmc-viewer-version: latest | ||
kissat-tag: latest | ||
litani-version: latest | ||
# Use exact versions (instead of "latest") so we're not broken by surprise upgrades. | ||
cadical-tag: "rel-2.0.0" # tag of latest release: https://github.com/arminbiere/cadical/releases | ||
cbmc-version: "6.0.0" # semver of latest release: https://github.com/diffblue/cbmc/releases | ||
cbmc-viewer-version: "3.8" # semver of latest release: https://github.com/model-checking/cbmc-viewer/releases | ||
kissat-tag: "rel-3.1.1" # tag of latest release: https://github.com/arminbiere/kissat/releases | ||
litani-version: "1.29.0" # semver of latest release: https://github.com/awslabs/aws-build-accumulator/releases | ||
proofs-dir: verification/cbmc/proofs | ||
run-cbmc-proofs-command: ./run-cbmc-proofs.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters