Skip to content

Commit

Permalink
Upgrade Z3 version
Browse files Browse the repository at this point in the history
Bump up the Z3 version from 4.8.9 to 4.8.12

The running time of `MVP_TEST_ON_CI=1 cargo test -p move-prover
--release` almost remains the same (comparing "before" and "after").

Removed an unused line from `diem/shuffle/move/examples/main/context.ts`
because the deno linter complains about it in CI

Closes: aptos-labs#9807
  • Loading branch information
junkil-park authored and bors-libra committed Nov 29, 2021
1 parent 4d6089c commit efcb28b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ KUBECTL_VERSION=1.18.6
TERRAFORM_VERSION=0.12.26
HELM_VERSION=3.2.4
VAULT_VERSION=1.5.0
Z3_VERSION=4.8.9
Z3_VERSION=4.8.12
CVC4_VERSION=aac53f51
CVC5_VERSION=0.0.3
DOTNET_VERSION=5.0
Expand Down Expand Up @@ -480,9 +480,9 @@ function install_z3 {
return
fi
if [[ "$(uname)" == "Linux" ]]; then
Z3_PKG="z3-$Z3_VERSION-x64-ubuntu-16.04"
Z3_PKG="z3-$Z3_VERSION-x64-glibc-2.31"
elif [[ "$(uname)" == "Darwin" ]]; then
Z3_PKG="z3-$Z3_VERSION-x64-osx-10.14.6"
Z3_PKG="z3-$Z3_VERSION-x64-osx-10.15.7"
else
echo "Z3 support not configured for this platform (uname=$(uname))"
return
Expand Down

0 comments on commit efcb28b

Please sign in to comment.