Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions e2e/ci-e2e-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# 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.10.4 |
# | RELAYER_ID | The type of relayer to use (rly/hermes) | hermes |
# | 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 | luca_joss-update-docker-build |
# | 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.
Expand Down Expand Up @@ -51,7 +51,7 @@ activeRelayer: hermes # override with RELAYER_ID
relayers:
- id: hermes
image: ghcr.io/informalsystems/hermes
tag: "1.10.4"
tag: "luca_joss-update-docker-build" # v1.13.1 had to be built manually
- id: rly
image: ghcr.io/cosmos/relayer
tag: "latest"
Expand Down
20 changes: 10 additions & 10 deletions e2e/sample.config.extended.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# 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 | Optional (fallback to A) |
# | CHAIN_D_TAG | The tag used for chain D | Optional (fallback to A) |
# | CHAIN_BINARY | The binary used in the container | simd |
# | RELAYER_TAG | The tag used for the relayer | 1.10.4 |
# | RELAYER_ID | The type of relayer to use (rly/hermes) | hermes |
# | 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 | Optional (fallback to A) |
# | CHAIN_D_TAG | The tag used for chain D | Optional (fallback to A) |
# | CHAIN_BINARY | The binary used in the container | simd |
# | RELAYER_TAG | The tag used for the relayer | luca_joss-update-docker-build |
# | 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.
Expand Down
2 changes: 1 addition & 1 deletion e2e/testsuite/testconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const (
defaultRlyTag = "latest"

// defaultHermesTag is the tag that will be used if no relayer tag is specified for hermes.
defaultHermesTag = "1.10.4"
defaultHermesTag = "luca_joss-update-docker-build" // v1.13.1 had to be built manually
// defaultChainTag is the tag that will be used for the chains if none is specified.
defaultChainTag = "main"
// defaultConfigFileName is the default filename for the config file that can be used to configure
Expand Down
Loading