Skip to content

Commit

Permalink
pin z3-latest to 4.13.0 for the test case generator
Browse files Browse the repository at this point in the history
later versions of z3 no longer build on Ubuntu 20.04, so
this commit allows us to keep releasing EverParse binaries
compatible with Ubuntu 20.04.
  • Loading branch information
tahina-pro committed Sep 30, 2024
1 parent 6dab81d commit d9f0010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ make_everparse() {
# Download and build the latest z3 for test case generation purposes
if ! $is_windows ; then
if ! [[ -d z3-latest ]] ; then
git clone https://github.com/Z3Prover/z3 z3-latest
git clone --branch z3-4.13.0 https://github.com/Z3Prover/z3 z3-latest
fi
z3_latest_dir="$PWD/everparse/z3-latest"
mkdir -p "$z3_latest_dir"
Expand Down

0 comments on commit d9f0010

Please sign in to comment.