diff --git a/.github/compatibility-test-matrices/release-v6.0.x/ica-gov-chain-a.json b/.github/compatibility-test-matrices/release-v6.0.x/ica-gov-chain-a.json new file mode 100644 index 00000000000..1f37ff750c4 --- /dev/null +++ b/.github/compatibility-test-matrices/release-v6.0.x/ica-gov-chain-a.json @@ -0,0 +1,10 @@ +{ + "chain-a": ["release-v6.0.x"], + "chain-b": ["release-v6.0.x"], + "entrypoint": ["TestInterchainAccountsGovTestSuite"], + "test": [ + "TestInterchainAccountsGovIntegration" + ], + "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/ica-groups-chain-a.json b/.github/compatibility-test-matrices/release-v6.0.x/ica-groups-chain-a.json new file mode 100644 index 00000000000..192011de384 --- /dev/null +++ b/.github/compatibility-test-matrices/release-v6.0.x/ica-groups-chain-a.json @@ -0,0 +1,10 @@ +{ + "chain-a": ["release-v6.0.x"], + "chain-b": ["release-v6.0.x"], + "entrypoint": ["TestInterchainAccountsGroupsTestSuite"], + "test": [ + "TestInterchainAccountsGroupsIntegration" + ], + "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 1f75d7cafaf..14445aba1b9 100644 --- a/.github/workflows/e2e-compatibility.yaml +++ b/.github/workflows/e2e-compatibility.yaml @@ -143,4 +143,22 @@ jobs: uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml with: test-file-directory: "${{ needs.determine-test-directory.outputs.test-directory }}" - test-suite: "incentivized-transfer-chain-b" \ No newline at end of file + test-suite: "incentivized-transfer-chain-b" + + ica-groups-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-groups-chain-a" + + ica-gov-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-gov-chain-a" \ No newline at end of file