Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
tkporter committed Nov 27, 2023
1 parent 98b8fe0 commit 916cdaf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
sudo df -h
sudo du -sh .
- name: Run tests
run: cargo test
run: cargo test --release
- name: After
run: |
sudo df -h
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
sudo df -h
sudo du -sh .
- name: Check
run: cargo check --all-features --all-targets
run: cargo check --release --all-features --all-targets
- name: After
run: |
sudo df -h
Expand All @@ -101,7 +101,7 @@ jobs:
sudo df -h
sudo du -sh .
- name: Check WASM
run: cargo check -p hyperlane-core --features=strum,test-utils --target wasm32-unknown-unknown
run: cargo check --release -p hyperlane-core --features=strum,test-utils --target wasm32-unknown-unknown
- name: After
run: |
sudo df -h
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
sudo du -sh .
- name: agent tests with CosmWasm
run: RUST_BACKTRACE=1 cargo test --package run-locally --bin run-locally -- cosmos::test --nocapture
run: RUST_BACKTRACE=1 cargo test --release --package run-locally --bin run-locally -- cosmos::test --nocapture
working-directory: ./rust

- name: After
Expand Down
2 changes: 2 additions & 0 deletions rust/agents/relayer/src/msg/metadata/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ impl BaseMetadataBuilder {
continue;
};

tracing::warn!("foo");

// If this is a LocalStorage based checkpoint syncer and it's not
// allowed, ignore it
if !self.allow_local_checkpoint_syncers
Expand Down

0 comments on commit 916cdaf

Please sign in to comment.