Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Goto binary serialization #2205

19 changes: 19 additions & 0 deletions .github/workflows/kani.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,25 @@ jobs:
- name: Execute Kani regression
run: ./scripts/kani-regression.sh

write-json-symtab-regression:
runs-on: ubuntu-20.04
steps:
- name: Checkout Kani
uses: actions/checkout@v3

- name: Setup Kani Dependencies
uses: ./.github/actions/setup
with:
os: ubuntu-20.04

- name: Build Kani
run: cargo build-dev

- name: Execute Kani regression
env:
KANI_ENABLE_WRITE_JSON_SYMTAB: 1
run: ./scripts/kani-regression.sh

experimental-features-regression:
runs-on: ubuntu-20.04
env:
Expand Down
7 changes: 7 additions & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ version = "0.22.0"
dependencies = [
"lazy_static",
"linear-map",
"memuse",
"num",
"num-traits",
"serde",
Expand Down Expand Up @@ -658,6 +659,12 @@ dependencies = [
"autocfg",
]

[[package]]
name = "memuse"
version = "0.2.1"
source = "registry+/~https://github.com/rust-lang/crates.io-index"
checksum = "2145869435ace5ea6ea3d35f59be559317ec9a0d04e1812d5f185a87b6d36f1a"

[[package]]
name = "mio"
version = "0.8.6"
Expand Down
1 change: 1 addition & 0 deletions cprover_bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ serde = {version = "1", features = ["derive"]}
string-interner = "0.14.0"
tracing = "0.1"
linear-map = {version = "1.2", features = ["serde_impl"]}
memuse = "0.2.1"
celinval marked this conversation as resolved.
Show resolved Hide resolved

[dev-dependencies]
serde_test = "1"
Loading