From 33fba8c86640414f0b31022918dd7e7839fb8e64 Mon Sep 17 00:00:00 2001 From: Preston Evans Date: Wed, 17 May 2023 12:33:14 -0500 Subject: [PATCH 1/3] Update to latest sov-sdk --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6f34d42..82cc68c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ serde_json = "1" tokio = { version = "1", features = ["full"], optional = true } tracing = "0.1.37" -sovereign-sdk = { git = "https://github.com/Sovereign-Labs/sovereign.git", rev = "a879d355b0506b64decacabf9f072bee122cf9ca" } +sovereign-sdk = { git = "https://github.com/Sovereign-Labs/sovereign.git", rev = "04d1591b4568cdfbebaa05eeee020c811080a9af" } nmt-rs = { git = "https://github.com/Sovereign-Labs/nmt-rs.git", rev = "dd37588444fca72825d11fe4a46838f66525c49f", features = ["serde", "borsh"] } [dev-dependencies] From 12a3d1c1aef5688a32c446d81bfbdb2ac9125c78 Mon Sep 17 00:00:00 2001 From: Preston Evans Date: Wed, 17 May 2023 13:18:08 -0500 Subject: [PATCH 2/3] Add CI --- {workflows => .github/workflows}/rust.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {workflows => .github/workflows}/rust.yml (100%) diff --git a/workflows/rust.yml b/.github/workflows/rust.yml similarity index 100% rename from workflows/rust.yml rename to .github/workflows/rust.yml From 6633926d42680f926ec5e7141446941b9a9f87ac Mon Sep 17 00:00:00 2001 From: Preston Evans Date: Wed, 17 May 2023 13:22:41 -0500 Subject: [PATCH 3/3] Fix CI: use correct branch --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 120ed32..6580a15 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,9 +2,9 @@ name: Rust on: push: - branches: ["research"] + branches: ["master"] pull_request: - branches: ["research"] + branches: ["master"] env: CARGO_TERM_COLOR: always