Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quasystaty1/bump hermes 1.10.3 docker fix #22

Draft
wants to merge 4 commits into
base: noot/bump-hermes-1.10.3
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion ci/release/hermes.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Usage: (from the root of the working copy)
# $ docker build . -t informalsystems/hermes -f ci/release/hermes.Dockerfile

FROM rust:1-buster AS build-env
FROM rust:1.81-bookworm AS build-env

ARG TAG

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
use ibc_relayer::config::ChainConfig;
use ibc_relayer::keyring::Store;
use ibc_test_framework::prelude::*;
use prost::bytes::buf::Chain;
use std::env;
use std::path::PathBuf;

Expand All @@ -45,10 +46,16 @@
match chain {
ChainConfig::CosmosSdk(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them

Check warning on line 49 in tools/integration-test/src/bin/test_setup_with_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_binary_channel.rs
// with external relayer commands.
chain_config.key_store_type = Store::Test;
}
},
ChainConfig::Astria(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them
// with external relayer commands.

Check warning on line 56 in tools/integration-test/src/bin/test_setup_with_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_binary_channel.rs
chain_config.key_store_type = Store::Test;
},
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,16 @@
match chain {
ChainConfig::CosmosSdk(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them

Check warning on line 49 in tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs
// with external relayer commands.
chain_config.key_store_type = Store::Test;
}
},
ChainConfig::Astria(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them
// with external relayer commands.

Check warning on line 56 in tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_fee_enabled_binary_channel.rs
chain_config.key_store_type = Store::Test;
},
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,16 @@
match chain {
ChainConfig::CosmosSdk(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them

Check warning on line 48 in tools/integration-test/src/bin/test_setup_with_ternary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_ternary_channel.rs
// with external relayer commands.
chain_config.key_store_type = Store::Test;
}
},
ChainConfig::Astria(chain_config) => {
// Modify the key store type to `Store::Test` so that the wallet
// keys are stored to ~/.hermes/keys so that we can use them
// with external relayer commands.

Check warning on line 55 in tools/integration-test/src/bin/test_setup_with_ternary_channel.rs

View workflow job for this annotation

GitHub Actions / fmt

Diff in /home/runner/work/hermes/hermes/tools/integration-test/src/bin/test_setup_with_ternary_channel.rs
chain_config.key_store_type = Store::Test;
},
}
}
}
Expand Down
Loading