Skip to content

Commit

Permalink
Improve datagen script
Browse files Browse the repository at this point in the history
Bench: 9895581
  • Loading branch information
SzilBalazs committed Sep 2, 2023
1 parent 8e060dd commit 31e342d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/datagen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ if [ $# -eq 0 ]
exit 1
fi

git clone https://github.com/SzilBalazs/WhiteCore
make EXE=Binary -C WhiteCore
rm -rf WhiteCore Binary
git clone https://github.com/SzilBalazs/WhiteCore || exit 1
make EXE=Binary -C WhiteCore || exit 1
cp WhiteCore/Binary Binary
./Binary test || exit 1
./Binary bench
./Binary bench || exit 1
rm -rf WhiteCore

while true
Expand Down

0 comments on commit 31e342d

Please sign in to comment.