forked from crypto-com/thaler
-
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.
Problem:(CRO-587) no integration test for new validator join tx
enable drone Update integration-tests/bot/chainrpc.py thanks Co-Authored-By: yihuang <[email protected]> Update integration-tests/bot/chainrpc.py Co-Authored-By: yihuang <[email protected]> turn off join, jail integration test fix enckey fix for enckey tidy up remove SPID, IAS_API_KEY remove spid print remove un-necessary print remove jail.nix in join setup spid, ias_api_key in docker-compose move setting to docker-compose support azure sgx
- Loading branch information
1 parent
438b62c
commit 879cf1f
Showing
36 changed files
with
927 additions
and
34 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,14 @@ | ||
#!/bin/bash | ||
./run_jail.sh | ||
ret=$? | ||
if [ $ret -ne 0 ]; then | ||
echo "jail test fail" | ||
exit -1 | ||
fi | ||
|
||
./run_join.sh | ||
ret=$? | ||
if [ $ret -ne 0 ]; then | ||
echo "join test fail" | ||
exit -1 | ||
fi |
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,3 @@ | ||
#!/bin/bash | ||
cd ../jail | ||
./run.sh |
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,3 @@ | ||
#!/bin/bash | ||
cd ../join | ||
./run.sh |
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
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
Oops, something went wrong.