-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove IBC-Go versioning table on home readme #1047
Conversation
@mkdir -p ./chain-code/ | ||
@git clone --branch $(GAIA_VERSION) --depth=1 https://github.com/cosmos/gaia.git ./chain-code/gaia | ||
@mkdir -p $(CHAIN_CODE)/ | ||
@git clone --branch $(GAIA_REPO) --depth=1 https://github.com/cosmos/gaia.git $(GAIA_REPO) | ||
|
||
build-gaia: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since we removed the legacy tests in favor of the ibctest cases, are these relevant to the repo anymore?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To my knowledge they are only used if people try and run the dev-env
script in examples/demo
If the gaiad binary doesn't exists, it will recommend you run 'make build-gaia'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could also remove these make commands and add a small blurb in the demo readme on how to download and build Gaia.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we should replace the demo examples with ibctest examples? Seems fine to keep this for now though. Thanks for fixing!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, however the current demos are such an easy example showing the basics of relaying and IBC. ibctest
adds a another level complexity.
For that reason, I'm in favor of keeping the demos in.
Now that we are several releases into Relayer V2, it shouldn't be necessary to maintain the IBC-Go versioning table in the readme anymore.
This PR also...
make-gaia
, andbuild-gaia
Closes #1041, #871