Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit 5e74309

Browse files
fix: try git-fetch-with-cli in host
1 parent 34b2cc4 commit 5e74309

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ docs: ## Generates documentation locally
5858
cargo doc --all-features --no-deps --release --open
5959

6060
check-risc0: ## Checks that the project compiles with risc0
61-
cd ci/risc0-check && RISC0_DEV_MODE=1 cargo run
61+
cd ci/risc0-check && RISC0_DEV_MODE=1 CARGO_NET_GIT_FETCH_WITH_CLI=true cargo run

ci/risc0-check/host/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ methods = { path = "../methods" }
88
risc0-zkvm = { version = "0.20.1" }
99
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
1010
serde = "1.0"
11+
12+
[net]
13+
git-fetch-with-cli = true

ci/risc0-check/methods/guest/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,3 @@ sov-ibc = { path = "../../../../modules/sov-ibc" }
1010
sov-ibc-transfer = { path = "../../../../modules/sov-ibc-transfer" }
1111
sov-celestia-client = { path = "../../../../clients/sov-celestia" }
1212
risc0-zkvm = { version = "0.20.1", default-features = false, features = ["std"] }
13-
14-
[net]
15-
git-fetch-with-cli = true

0 commit comments

Comments
 (0)