Skip to content

Commit

Permalink
adding upgrade to compatibility workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
damiannolan committed Oct 12, 2022
1 parent 7bb7d04 commit 7701999
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/compatibility-test-matrices/release-v5.0.x/upgrade.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"chain-a": ["v4.1.0", "v4.0.0"],
"chain-b": ["v4.1.0", "v4.0.0"],
"entrypoint": ["TestUpgradeTestSuite"],
"test": [
"TestV4ToV5ChainUpgrade"
],
"chain-binary": ["simd"],
"chain-image": ["ghcr.io/cosmos/ibc-go-simd"],
"chain-upgrade-tag": ["v5.0.0"]
}

12 changes: 12 additions & 0 deletions .github/compatibility-test-matrices/release-v6.0.x/upgrade.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"chain-a": ["v0.3.5"],
"chain-b": ["v0.3.5"],
"entrypoint": ["TestUpgradeTestSuite"],
"test": [
"TestV5ToV6ChainUpgrade"
],
"chain-binary": ["icad"],
"chain-image": ["ghcr.io/cosmos/ibc-go-icad"],
"chain-upgrade-tag": ["v0.4.0"]
}

1 change: 1 addition & 0 deletions .github/workflows/e2e-compatibility-workflow-call.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,5 @@ jobs:
CHAIN_A_TAG: "${{ matrix.chain-a }}"
CHAIN_B_TAG: "${{ matrix.chain-b }}"
CHAIN_BINARY: "${{ matrix.chain-binary }}"
CHAIN_UPGRADE_TAG: "${{ matrix.chain-upgrade-tag }}"
RLY_TAG: "v2.0.0"
9 changes: 9 additions & 0 deletions .github/workflows/e2e-compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,12 @@ jobs:
with:
docker-tag: "${{ needs.determine-docker-tag.outputs.docker-tag }}"
test-suite: "incentivized-transfer"

upgrade:
needs:
- build-release-image
- determine-docker-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
docker-tag: "${{ needs.determine-docker-tag.outputs.docker-tag }}"
test-suite: "upgrade"

0 comments on commit 7701999

Please sign in to comment.