Skip to content

Commit

Permalink
Install eldarica on OSX machines
Browse files Browse the repository at this point in the history
  • Loading branch information
r0qs committed Mar 25, 2024
1 parent fce0e96 commit ee2f0e0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .circleci/osx_install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ then
brew install coreutils
brew install diffutils
brew install grep
# JRE is required to run eldarica solver
brew install java
brew install unzip

# writing to /usr/local/lib need administrative privileges.
sudo ./scripts/install_obsolete_jsoncpp_1_7_4.sh
Expand Down Expand Up @@ -90,6 +93,14 @@ then
cd ../..
rm -rf "$z3_dir"

# eldarica
eldarica_version="2.1"
wget "https://github.com/uuverifiers/eldarica/releases/download/v${eldarica_version}/eldarica-bin-${eldarica_version}.zip" -O /opt/eld_binaries.zip
unzip /opt/eld_binaries.zip -d /opt
export PATH="$PATH:/opt/eldarica"
rm -f /opt/eld_binaries.zip
cd ..

# evmone
evmone_version="0.11.0"
if [[ $(uname -m) == 'arm64' ]]
Expand Down

0 comments on commit ee2f0e0

Please sign in to comment.