Skip to content

Commit

Permalink
Add a test config for the go-relayer
Browse files Browse the repository at this point in the history
  • Loading branch information
Inkvi committed Jul 10, 2023
1 parent 780c62c commit fe353fd
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
config-file: ["two-chain.yaml", "build-chain.yaml", "multi-validator.yaml"]
config-file: ["two-chain.yaml", "build-chain.yaml", "multi-validator.yaml", "two-chain-gorelayer.yaml"]
fail-fast: true
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
config-file: [ "one-chain.yaml", "two-chain.yaml", "build-chain.yaml", "one-custom-chain.yaml", "multi-validator.yaml" ]
config-file: [ "one-chain.yaml", "two-chain.yaml", "build-chain.yaml", "one-custom-chain.yaml", "multi-validator.yaml", "two-chain-gorelayer.yaml" ]
fail-fast: true
max-parallel: 1

Expand Down
37 changes: 37 additions & 0 deletions tests/configs/two-chain-gorelayer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
chains:
- name: osmosis-1
type: osmosis
numValidators: 2
ports:
rest: 1313
rpc: 26653
exposer: 38083
faucet: 8001
- name: cosmoshub-4
type: cosmos
image: anmol1696/gaia:v10.0.1
numValidators: 2
ports:
rest: 1317
rpc: 26657
exposer: 38087
faucet: 8000

relayers:
- name: osmos-cosmos
type: go-relayer
replicas: 1
chains:
- osmosis-1
- cosmoshub-4

explorer:
enabled: false
ports:
rest: 8080

registry:
enabled: true
ports:
rest: 8081
grpc: 9091

0 comments on commit fe353fd

Please sign in to comment.