forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
51 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
cd $ZKSYNC_HOME | ||
. .setup_env | ||
|
||
zksync integration-test || exit 1 | ||
zksync api-test || exit 1 | ||
|
||
# zcli test | ||
yarn --cwd infrastructure/zcli test || exit 1 | ||
|
||
# rust-sdk tesst | ||
cargo test -p zksync --release -- --ignored --test-threads=1 || exit 1 | ||
|
||
# We have to kill the server before running data-restore | ||
killall zksync_server | ||
zksync data-restore || exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
echo "Server logs:" | ||
echo "============" | ||
cat $ZKSYNC_HOME/server.log | ||
echo "" | ||
|
||
echo "Prover logs:" | ||
echo "============" | ||
cat $ZKSYNC_HOME/dummy_prover.log | ||
echo "" | ||
|
||
# If we're calling this script, previous command failed and we want to exit with an error code | ||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters