Skip to content

Commit beca357

Browse files
roypatzulinx86
authored andcommitted
fix: unpin kani-verifier version in Dockerfile
Remove the pin of kani to 0.45.0. We introduced this pin in 2f01981 due to model-checking/kani#3035. Kani fixed the issue in 0.48.0 (verifier by installing kani 0.48.0 locally and executing the gcd proof), so we can remove the pin and pick up a new kani version the next time we rebuild the docker container. Signed-off-by: Patrick Roy <[email protected]>
1 parent dd104c1 commit beca357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/devctr/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain "$RUST_TOOL
111111
&& rustup target add aarch64-unknown-linux-musl \
112112
&& rustup component add llvm-tools-preview \
113113
&& cargo install --locked cargo-audit cargo-deny grcov cargo-sort \
114-
&& (if [ "$ARCH" = "x86_64" ]; then cargo install --locked kani-verifier --version 0.45.0 && cargo kani setup; else true; fi) \
114+
&& (if [ "$ARCH" = "x86_64" ]; then cargo install --locked kani-verifier && cargo kani setup; else true; fi) \
115115
\
116116
&& apt-get update \
117117
&& apt-get -y install --no-install-recommends \

0 commit comments

Comments
 (0)