-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added makefile step for test-rosetta-ci * downsized github workflow * Update Makefile Co-authored-by: Ezequiel Raynaudo <[email protected]> * fixed makefile message * debugging workflow * debug * debug * debug * merge with main * removed merge typo * added checkout to cosmos-sdk versioning * fix makefile typo --------- Co-authored-by: Ezequiel Raynaudo <[email protected]>
- Loading branch information
Showing
10 changed files
with
30 additions
and
106 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
git clone https://github.com/cosmos/cosmos-sdk.git | ||
# shellcheck disable=SC2164 | ||
cd cosmos-sdk | ||
git checkout "$COSMOS_SDK_VERSION" | ||
make build | ||
export SIMD_BIN=./build/simd | ||
chmod 777 ./scripts/init-simapp.sh | ||
sh ./scripts/init-simapp.sh --just-print | ||
$SIMD_BIN start & | ||
until curl --output /dev/null --silent --head --fail http://localhost:26657/health; do | ||
sleep 1 | ||
done |
This file was deleted.
Oops, something went wrong.