Skip to content

Commit

Permalink
fix(travis-extra.sh): download z3 lib from ow2 instead of github for …
Browse files Browse the repository at this point in the history
…CI (#3356)
  • Loading branch information
monperrus committed May 7, 2020
1 parent c83e023 commit 965d72d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion chore/travis/travis-extra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ cd ../spoon-dataflow
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64/

# download and install z3 lib
wget https://github.com/Z3Prover/z3/releases/download/z3-4.8.4/z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
# the github URL is rate limited, and this results in flaky CI
# wget https://github.com/Z3Prover/z3/releases/download/z3-4.8.4/z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
# so we have a copy on OW2
wget https://projects.ow2.org/download/spoon/WebHome/z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip

unzip z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04.zip
export LD_LIBRARY_PATH=./z3-4.8.4.d6df51951f4c-x64-ubuntu-14.04/bin

Expand Down

0 comments on commit 965d72d

Please sign in to comment.