diff --git a/.github/compatibility-test-matrices/release-v6.0.x/ica-chain-a.json b/.github/compatibility-test-matrices/release-v6.0.x/ica-chain-a.json new file mode 100644 index 00000000000..20d2e0c75f1 --- /dev/null +++ b/.github/compatibility-test-matrices/release-v6.0.x/ica-chain-a.json @@ -0,0 +1,12 @@ +{ + "chain-a": ["release-v6.0.x"], + "chain-b": ["release-v6.0.x"], + "entrypoint": ["TestInterchainAccountsTestSuite"], + "test": [ + "TestMsgSendTx_SuccessfulTransfer", + "TestMsgSendTx_FailedTransfer_InsufficientFunds", + "TestMsgSubmitTx_SuccessfulTransfer_AfterReopeningICA" + ], + "chain-binary": ["simd"], + "chain-image": ["ghcr.io/cosmos/ibc-go-simd"] +} \ No newline at end of file diff --git a/.github/compatibility-test-matrices/release-v6.0.x/incentivized-ica-chain-a.json b/.github/compatibility-test-matrices/release-v6.0.x/incentivized-ica-chain-a.json new file mode 100644 index 00000000000..4f3eaa17eb9 --- /dev/null +++ b/.github/compatibility-test-matrices/release-v6.0.x/incentivized-ica-chain-a.json @@ -0,0 +1,11 @@ +{ + "chain-a": ["release-v6.0.x"], + "chain-b": ["release-v6.0.x"], + "entrypoint": ["TestIncentivizedInterchainAccountsTestSuite"], + "test": [ + "TestMsgSendTx_SuccessfulBankSend_Incentivized", + "TestMsgSendTx_FailedBankSend_Incentivized" + ], + "chain-binary": ["simd"], + "chain-image": ["ghcr.io/cosmos/ibc-go-simd"] +} \ No newline at end of file diff --git a/.github/workflows/e2e-compatibility.yaml b/.github/workflows/e2e-compatibility.yaml index 14445aba1b9..c85c0179440 100644 --- a/.github/workflows/e2e-compatibility.yaml +++ b/.github/workflows/e2e-compatibility.yaml @@ -145,6 +145,24 @@ jobs: test-file-directory: "${{ needs.determine-test-directory.outputs.test-directory }}" test-suite: "incentivized-transfer-chain-b" + ica-chain-a: + needs: + - build-release-images + - determine-test-directory + uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml + with: + test-file-directory: "${{ needs.determine-test-directory.outputs.test-directory }}" + test-suite: "ica-chain-a" + + incentivized-ica-chain-a: + needs: + - build-release-images + - determine-test-directory + uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml + with: + test-file-directory: "${{ needs.determine-test-directory.outputs.test-directory }}" + test-suite: "incentivized-ica-chain-a" + ica-groups-chain-a: needs: - build-release-images