Skip to content

Commit d887868

Browse files
author
Maxime Bedard
committed
core is always pinned to release
1 parent 1dc0168 commit d887868

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cli: core
55
cd crates/cli && cargo build && cd -
66

77
check-benchmarks:
8-
cd crates/benchmarks \
8+
cd crates/benchmarks \
99
&& cargo check --benches --release \
1010
&& cd -
1111

@@ -15,8 +15,8 @@ core:
1515
&& cd -
1616

1717
test-core:
18-
cd crates/core \
19-
&& cargo wasi test --features standalone-wasi -- --nocapture
18+
cd crates/core \
19+
&& cargo wasi test --features standalone-wasi -- --nocapture
2020

2121
tests: check-benchmarks test-core
2222

crates/cli/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ fn copy_engine_binary() {
5353
let mut engine_path = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
5454
engine_path.pop();
5555
engine_path.pop();
56-
let engine_path = engine_path.join("target/wasm32-wasi/debug/javy_core.wasm");
56+
let engine_path = engine_path.join("target/wasm32-wasi/release/javy_core.wasm");
5757

5858
println!("cargo:rerun-if-changed={:?}", engine_path);
5959

0 commit comments

Comments
 (0)