forked from cosmos/interchain-security
-
Notifications
You must be signed in to change notification settings - Fork 0
chore: update tag filter for e2e build #8
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
aff774b
chore: update tag filter for e2e build
n2p5 cc75eb9
feat: fix e2e testing for simple test
n2p5 acdcc38
chore: code cleanup
n2p5 e253a32
chore: code cleanup
n2p5 acf5bc0
chore: code cleanup
n2p5 6c45a61
chore: update CI go version and remove e2e compat test
n2p5 21998b9
chore: fix ci workers
n2p5 c32f438
chore: fix ci workers
n2p5 8887518
chore: fix ci workers
n2p5 51f51b3
fix: integration tests
n2p5 284af12
fix: remove sonarcloud from CI
n2p5 b47436c
chore: debug logging cleanup
n2p5 7f8a868
chore: debug logging cleanup
n2p5 0788e00
fix: remove pss refs in e2e
n2p5 7446da7
chore: remove some dead docs
n2p5 66f5cbc
fix: restore documentation files from 7f8a868b
n2p5 621a146
fix: make small changes with PR feedback
n2p5 7a25d2e
fix: typo in e2e steps
n2p5 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -15,3 +15,6 @@ docs/versioned_sidebars | |
|
||
# Go test binaries | ||
*.test | ||
|
||
# Log files | ||
*.log |
This file contains hidden or 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 hidden or 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 hidden or 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,35 @@ | ||
package common | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/cosmos/cosmos-sdk/baseapp" | ||
) | ||
|
||
// SimpleVersionModifier implements the baseapp.VersionModifier interface | ||
// required by AtomOne SDK v0.50.14 for ABCI queries to function properly. | ||
// | ||
n2p5 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// ICS1 E2E FIX: AtomOne SDK requires a VersionModifier for the baseapp to handle | ||
// ABCI info queries correctly. Without this, Hermes relayer fails with | ||
// "app.versionModifier is nil" error when creating IBC connections. | ||
// | ||
// This implementation returns protocol version 0, which is sufficient for testing | ||
// and basic operations. Production deployments may want to implement proper | ||
// version tracking if protocol upgrades are planned. | ||
type SimpleVersionModifier struct{} | ||
|
||
// Ensure SimpleVersionModifier implements the baseapp.VersionModifier interface | ||
var _ baseapp.VersionModifier = (*SimpleVersionModifier)(nil) | ||
|
||
// SetAppVersion sets the application protocol version. | ||
// This implementation is a no-op as we don't need to track version changes for testing. | ||
func (s SimpleVersionModifier) SetAppVersion(ctx context.Context, version uint64) error { | ||
// For testing purposes, we don't need to store the version | ||
return nil | ||
} | ||
|
||
// AppVersion returns the current application protocol version. | ||
// Returns 0 as the default version, which is sufficient for testing. | ||
func (s SimpleVersionModifier) AppVersion(ctx context.Context) (uint64, error) { | ||
return 0, nil | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.