Skip to content

Commit

Permalink
add missing configuration for compatibility tests
Browse files Browse the repository at this point in the history
  • Loading branch information
crodriguezvega committed Jan 30, 2024
1 parent d330de7 commit 24fdc81
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/e2e-compatibility-unreleased.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,19 @@ jobs:
with:
test-file-directory: "unreleased"
test-suite: "transfer-authz"

transfer-channel-upgrade:
needs:
- build-release-images
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file-directory: "unreleased"
test-suite: "transfer-channel-upgrade"

ica-channel-upgrade:
needs:
- build-release-images
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file-directory: "unreleased"
test-suite: "ica-channel-upgrade"
36 changes: 36 additions & 0 deletions .github/workflows/e2e-compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,3 +243,39 @@ jobs:
with:
test-file-directory: "${{ needs.determine-test-directory.outputs.test-directory }}"
test-suite: "genesis-chain-a"

transfer-channel-upgrade-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: "transfer-channel-upgrade-chain-a"

transfer-channel-upgrade-chain-b:
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: "transfer-channel-upgrade-chain-b"

ica-channel-upgrade-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: "transfer-channel-upgrade-chain-a"

ica-channel-upgrade-chain-b:
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: "transfer-channel-upgrade-chain-b"

0 comments on commit 24fdc81

Please sign in to comment.