Skip to content

Compatibility E2E

Compatibility E2E #275

# Runs compatibility tests for ibc-go.
# Can be triggered manually by setting values for release-branch and ibc-go-version.
# On a weekly schedule with default values of 'main' for release-branch and 'main-cron-job' for ibc-go-version.
name: Compatibility E2E
on:
schedule:
# run on 20:00 on Sunday.
- cron: '0 20 * * 6'
workflow_dispatch:
inputs:
release-branch:
description: 'Release branch to test'
required: true
type: choice
options:
- release/v7.4.x
- release/v7.5.x
- release/v7.6.x
- release/v7.7.x
- release/v7.8.x
- release/v8.4.x
- release/v8.5.x
- release/v9.0.x
- main
ibc-go-version:
description: 'The version of ibc-go that is going to be released'
required: true
type: string
env:
REGISTRY: ghcr.io
ORG: cosmos
IMAGE_NAME: ibc-go-simd
RELEASE_BRANCH: ${{ inputs.release-branch || 'main' }}
IBC_GO_VERSION: ${{ inputs.ibc-go-version || 'latest' }}
jobs:
determine-image-tag:
runs-on: ubuntu-latest
outputs:
release-version: ${{ steps.set-release-version.outputs.release-version }}
steps:
- run: |
# we sanitize the release branch name. Docker images cannot contain "/"
# characters so we replace them with a "-".
release_version="$(echo $RELEASE_BRANCH | sed 's/\//-/')"
echo "release-version=$release_version" >> $GITHUB_OUTPUT
id: set-release-version
# build-release-images builds all docker images that are relevant for the compatibility tests. If a single release
# branch is specified, only that image will be built, e.g. release-v6.0.x.
build-release-images:
runs-on: ubuntu-latest
strategy:
matrix:
release-branch:
- release/v7.4.x
- release/v7.5.x
- release/v7.6.x
- release/v7.7.x
- release/v7.8.x
- release/v8.4.x
- release/v8.5.x
- release/v9.0.x
- main
steps:
- uses: actions/checkout@v4
if: env.RELEASE_BRANCH == matrix.release-branch
with:
ref: "${{ matrix.release-branch }}"
fetch-depth: 0
- name: Log in to the Container registry
if: env.RELEASE_BRANCH == matrix.release-branch
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
if: env.RELEASE_BRANCH == matrix.release-branch
run: |
docker_tag="$(echo ${{ matrix.release-branch }} | sed 's/[^a-zA-Z0-9\.]/-/g')"
docker build . -t "${REGISTRY}/${ORG}/${IMAGE_NAME}:$docker_tag" --build-arg IBC_GO_VERSION=${{ env.IBC_GO_VERSION }}
docker push "${REGISTRY}/${ORG}/${IMAGE_NAME}:$docker_tag"
- name: Display image details
if: env.RELEASE_BRANCH == matrix.release-branch
run: |
docker_tag="$(echo ${{ matrix.release-branch }} | sed 's/[^a-zA-Z0-9\.]/-/g')"
docker inspect "${REGISTRY}/${ORG}/${IMAGE_NAME}:$docker_tag"
client-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/core/02-client/client_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
connection-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/core/03-connection/connection_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
ica-base-test-a:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/base_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
chain: "chain-a"
ica-base-test-b:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/base_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
chain: "chain-b"
ica-gov-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/gov_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
ica-groups-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/groups_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
ica-inventivized-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/incentivized_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
ica-localhost-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/localhost_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
ica-params-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/params_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
ica-query-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/query_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
ica-upgrade-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/interchain_accounts/upgrades_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
transfer-base-test-a:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/base_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
chain: "chain-a"
transfer-base-test-b:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/base_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
chain: "chain-b"
transfer-authz-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/authz_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
transfer-forwarding-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/forwarding_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
transfer-incentivized-test-a:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/incentivized_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
chain: "chain-a"
transfer-incentivized-test-b:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/incentivized_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
chain: "chain-b"
transfer-localhost-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/localhost_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
transfer-send-enabled-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/send_enabled_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
transfer-receive-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/send_receive_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
transfer-upgrades-v1-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/upgradesv1_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
transfer-upgrades-v2-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/transfer/upgradesv2_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"
upgrade-genesis-test:
needs:
- build-release-images
- determine-image-tag
uses: ./.github/workflows/e2e-compatibility-workflow-call.yaml
with:
test-file: "e2e/tests/upgrades/genesis_test.go"
release-version: "${{ needs.determine-image-tag.outputs.release-version }}"