-
Notifications
You must be signed in to change notification settings - Fork 617
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
fix(e2e): compatibility e2e test fixes #5761
Changes from 5 commits
ffd6ccc
95055bc
9f1f261
27741c8
2159cab
33d6f81
da73c65
c949d5b
2538051
4966db8
307c149
e4fb3d6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"chain-a": [ | ||
"main" | ||
], | ||
"chain-b": [ | ||
"main", | ||
"v8.1.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will not work until the tag is created, but I added it already anyway, since I am not planning to run this workflow before the release. |
||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_UnorderedChannel" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"chain-a": [ | ||
"main", | ||
"v8.1.0" | ||
], | ||
"chain-b": [ | ||
"main" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_UnorderedChannel" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_UnorderedChannel" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_UnorderedChannel" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v8.1.x" | ||
], | ||
"chain-b": [ | ||
"release-v8.1.x" | ||
], | ||
"entrypoint": [ | ||
"TestInterchainAccountsTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgSendTx_SuccessfulTransfer_UnorderedChannel" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,6 @@ jobs: | |
- name: Build image | ||
run: | | ||
# remove any `/` characters from the docker tag and replace them with a - | ||
docker_tag="$(echo $GIT_TAG | sed 's/[^a-zA-Z0-9]/-/g')" | ||
docker_tag="$(echo $GIT_TAG | sed 's/[^a-zA-Z0-9\.]/-/g')" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added the |
||
docker build . -t "${REGISTRY}/${ORG}/${IMAGE_NAME}:${docker_tag}" -f modules/apps/callbacks/Dockerfile | ||
docker push "${REGISTRY}/${ORG}/${IMAGE_NAME}:${docker_tag}" |
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.
I added new files for compatibility testing of unordered ICA channels.