Skip to content

Commit

Permalink
Minor update in build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
palinatolmach authored Aug 4, 2022
1 parent a380125 commit 350bbf9
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,13 @@ git clone https://github.com/Microsoft/vcpkg.git &&\
./vcpkg integrate install &&\
./vcpkg install jsoncpp

cd ..

mkdir -p temp && cd /temp &&\
git clone https://github.com/Z3Prover/z3.git &&\
git clone https://github.com/Z3Prover/z3.git &&\
cd z3 && \
git checkout z3-4.8.13 &&\
python scripts/mk_make.py &&\
cd build &&\
make &&\
make install

cd ../../..
make install && cd ../..

unzip definery-see.zip
chmod +x ./definery-see
Expand All @@ -31,17 +26,17 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" &&\
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" &&\
cd SCRepair/sm &&\
npm install && npm run-script build
npm install && npm run-script build && cd ../

# curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py &&\
# python3.7 ./get-pip.py &&\
# rm get-pip.py

cd .. && python3.7 setup.py install
python3.7 setup.py install

pip install attrs charset_normalizer logbook deap docker

mkdir contracts && mkdir experiments
cd ..
cp -r contracts/eval/* SCRepair/contracts/
cp definery-see SCRepair/

cp -r ../contracts/eval/* ./contracts/
cp ../definery-see ./

0 comments on commit 350bbf9

Please sign in to comment.