Skip to content

Commit

Permalink
Update Gaia used in CI to v17 (#4032)
Browse files Browse the repository at this point in the history
* Use Gaia v17.2.0 instead of v15.2.0

* Add changelog entry

* Add missing fields to consumer chain gov proposal
  • Loading branch information
ljoss17 authored Jun 10, 2024
1 parent d76f538 commit f0ffaf4
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update the version of Gaia running the integration tests in the CI from `v15.2.0`
to `v17.2.0` ([\#4023](https://github.com/informalsystems/hermes/issues/4023))
12 changes: 6 additions & 6 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
fail-fast: false
matrix:
chain:
- package: gaia15
- package: gaia17
command: gaiad
account_prefix: cosmos
native_token: stake
features: forward-packet,clean-workers
features: forward-packet,clean-workers,ica,ics29-fee
- package: ibc-go-v6-simapp
command: simd
account_prefix: cosmos
Expand Down Expand Up @@ -171,10 +171,10 @@ jobs:
fail-fast: false
matrix:
chain:
- package: .#gaia15 .#stride
- package: .#gaia17 .#stride
command: gaiad,strided
account_prefix: cosmos,stride
- package: .#gaia15 .#neutron
- package: .#gaia17 .#neutron
command: gaiad,neutrond
account_prefix: cosmos,neutron
steps:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
fail-fast: false
matrix:
chain:
- package: .#gaia15 .#stride-no-admin
- package: .#gaia17 .#stride-no-admin
command: gaiad,strided
account_prefix: cosmos,stride
steps:
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
fail-fast: false
matrix:
chain:
- package: .#celestia .#gaia15
- package: .#celestia .#gaia17
command: celestia-appd,gaiad
account_prefix: celestia,cosmos
native_token: utia,stake
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/misbehaviour.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
fail-fast: false
matrix:
chain:
- package: gaia15
- package: gaia17
command: gaiad
account_prefix: cosmos
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multi-chains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
fail-fast: false
matrix:
first-package:
- package: gaia15
- package: gaia17
command: gaiad
account_prefix: cosmos
- package: ibc-go-v7-simapp
Expand Down
24 changes: 21 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
cometbft
evmos
gaia6-ordered
gaia15
gaia17
ibc-go-v2-simapp
ibc-go-v3-simapp
ibc-go-v4-simapp
Expand Down
7 changes: 6 additions & 1 deletion tools/test-framework/src/chain/ext/bootstrap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,12 @@ impl ChainBootstrapMethodsExt for ChainDriver {
"transfer_timeout_period": 100000000000,
"ccv_timeout_period": 100000000000,
"unbonding_period": 100000000000,
"deposit": "10000001stake"
"deposit": "10000001stake",
"top_N": 95,
"validators_power_cap": 0,
"validator_set_cap": 0,
"allowlist": [],
"denylist": []
}"#;

let proposal = raw_proposal.replace("{consumer_chain_id}", consumer_chain_id);
Expand Down

0 comments on commit f0ffaf4

Please sign in to comment.