We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7b5ba commit 9b35679Copy full SHA for 9b35679
build_container.sh
@@ -151,3 +151,9 @@ if [ "$ARCH" == "riscv64" ]; then
151
# Setup network
152
echo $'auto lo\niface lo inet loopback\n\nauto eth0\niface eth0 inet dhcp\n' > /etc/network/interfaces
153
fi
154
+
155
+# Install kani in x86 and arm. Not available on riscv64, so skip there
156
+if [ "$ARCH" != "riscv64" ]; then
157
+ cargo install --locked kani-verifier
158
+ cargo kani setup
159
+fi
0 commit comments