Skip to content

Commit

Permalink
Clone test input data if needed.
Browse files Browse the repository at this point in the history
  • Loading branch information
HristoStaykov committed Feb 9, 2024
1 parent 223d5ea commit d23c925
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ cd $SCRIPT_DIR/../docker && docker build -t zcli:latest -f Dockerfile_zcli . &&

cd $CURRENT_DIR

if [ ! -d $SCRIPT_DIR/../../consensus-spec-tests ]
then
git clone git@github.com:ethereum/consensus-spec-tests.git $SCRIPT_DIR/../../consensus-spec-tests
fi

bash ${SCRIPT_DIR}/run.sh --docker compile

bash ${SCRIPT_DIR}/docker_run.sh make test
2 changes: 1 addition & 1 deletion vendor/zkllvm-metacraft-circuits/scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ cd $REPO_ROOT/zkllvm-template
COPY_SOURCE_FILES=0
scripts/run.sh $@
cd $SCRIPT_DIR/..
rm -r $REPO_ROOT/zkllvm-template/src
rm -rf $REPO_ROOT/zkllvm-template/src
mv $REPO_ROOT/src~ $REPO_ROOT/zkllvm-template/src

0 comments on commit d23c925

Please sign in to comment.