Some checks failed
CodeQL / Analyze (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
Buf-Push / push (push) Has been cancelled
81 lines
3.1 KiB
YAML
81 lines
3.1 KiB
YAML
# This file contains configuration for running e2e tests.
|
|
# Many of these fields can be overridden with environment variables.
|
|
# All fields that support this have the corresponding environment variable name in a comment beside the field.
|
|
|
|
# | Environment Variable | Description | Default Value |
|
|
# |----------------------|-------------------------------------------|-------------------------------|
|
|
# | CHAIN_IMAGE | The image that will be used for the chain | ghcr.io/cosmos/ibc-go-simd |
|
|
# | CHAIN_A_TAG | The tag used for chain A | N/A (must be set) |
|
|
# | CHAIN_B_TAG | The tag used for chain B | N/A (must be set) |
|
|
# | CHAIN_C_TAG | The tag used for chain C | N/A (optional; fallback to A) |
|
|
# | CHAIN_D_TAG | The tag used for chain D | N/A (optional; fallback to A) |
|
|
# | CHAIN_BINARY | The binary used in the container | simd |
|
|
# | RELAYER_TAG | The tag used for the relayer | 1.13.1 |
|
|
# | RELAYER_ID | The type of relayer to use (rly/hermes) | hermes |
|
|
|
|
# see sample.config.yaml for a bare minimum configuration example.
|
|
# set env E2E_CONFIG_PATH to point to this file to use it.
|
|
---
|
|
chains:
|
|
# the entry at index 0 corresponds to CHAIN_A
|
|
- chainId: chainA-1
|
|
numValidators: 4
|
|
numFullNodes: 1
|
|
image: ghcr.io/cosmos/ibc-go-simd # override with CHAIN_IMAGE
|
|
binary: simd # override with CHAIN_BINARY
|
|
|
|
# the entry at index 1 corresponds to CHAIN_B
|
|
- chainId: chainB-1
|
|
numValidators: 4
|
|
numFullNodes: 1
|
|
image: ghcr.io/cosmos/ibc-go-simd # override with CHAIN_IMAGE
|
|
binary: simd # override with CHAIN_BINARY
|
|
|
|
# the entry at index 2 corresponds to CHAIN_C
|
|
- chainId: chainC-1
|
|
numValidators: 4
|
|
numFullNodes: 1
|
|
image: ghcr.io/cosmos/ibc-go-simd # override with CHAIN_IMAGE
|
|
binary: simd # override with CHAIN_BINARY
|
|
|
|
# the entry at index 3 corresponds to CHAIN_D
|
|
- chainId: chainD-1
|
|
numValidators: 4
|
|
numFullNodes: 1
|
|
image: ghcr.io/cosmos/ibc-go-simd # override with CHAIN_IMAGE
|
|
binary: simd # override with CHAIN_BINARY
|
|
|
|
# activeRelayer must match the id of a relayer specified in the relayers list below.
|
|
activeRelayer: hermes # override with RELAYER_ID
|
|
|
|
relayers:
|
|
- id: hermes
|
|
image: ghcr.io/informalsystems/hermes
|
|
tag: "1.13.1"
|
|
- id: rly
|
|
image: ghcr.io/cosmos/relayer
|
|
tag: "latest"
|
|
|
|
cometbft:
|
|
logLevel: info
|
|
|
|
debug:
|
|
# setting this value to true will force log collection even if the test passes.
|
|
dumpLogs: false
|
|
# settings this value to true will keep the containers running after the test finishes.
|
|
keepContainers: true
|
|
|
|
upgradePlanName: ""
|
|
upgrades:
|
|
- planName: "v7"
|
|
tag: "v7.0.0"
|
|
- planName: "v7.1"
|
|
tag: "v7.1.0"
|
|
- planName: "v8"
|
|
tag: "v8.0.0"
|
|
- planName: "v8.1"
|
|
tag: "v8.1.0"
|
|
- planName: "v10"
|
|
tag: "branch-release-v10.4.x"
|
|
- planName: "ibcwasm-v8"
|
|
tag: "v8.0.0-e2e-upgrade"
|