Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Dec 20, 2024
1 parent 7ada334 commit 27ecef9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-core-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
ci_run zkstack dev test rust
# Benchmarks are not tested by `cargo nextest` unless specified explicitly, and even then `criterion` harness is incompatible
# with how `cargo nextest` runs tests. Thus, we run criterion-based benchmark tests manually.
ci_run cargo test --release -p vm-benchmark --bench oneshot --bench batch
ci_run cargo test --manifest-path ./core/Cargo.toml --release -p vm-benchmark --bench oneshot --bench batch
loadtest:
runs-on: [ matterlabs-ci-runner-high-performance ]
Expand Down
2 changes: 1 addition & 1 deletion core/bin/zksync_tee_prover/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zksync_tee_prover"
description = "ZKsync TEE prover"
version.workspace = true
version = "0.1.0"
edition.workspace = true
authors.workspace = true
homepage.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion zkstack_cli/crates/zkstack/src/commands/prover/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ pub(crate) async fn run(args: ProverRunArgs, shell: &Shell) -> anyhow::Result<()
update_setup_data_path(&chain, "data/keys".to_string())?;
run_binary_component(
shell,
"prover/Cargo.toml",
component.binary_name(),
&application_args,
&additional_args,
Expand Down Expand Up @@ -135,6 +136,7 @@ fn run_dockerized_component(

fn run_binary_component(
shell: &Shell,
manifest: &str,
binary_name: &str,
application_args: &[String],
args: &[String],
Expand All @@ -145,7 +147,7 @@ fn run_binary_component(

let mut cmd = Cmd::new(cmd!(
shell,
"cargo run --manifest-path ./core/Cargo.toml {application_args...} --release --bin {binary_name} -- {args...}"
"cargo run --manifest-path {manifest} {application_args...} --release --bin {binary_name} -- {args...}"
));
cmd = cmd.with_force_run();
cmd.run().context(error)
Expand Down

0 comments on commit 27ecef9

Please sign in to comment.