Skip to content

Commit 213f7f5

Browse files
committed
Make it work on Windows
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
1 parent 5a2e28a commit 213f7f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@ examples-components target=default-target features="": (build-rust-component-exa
108108
# warning, compares to and then OVERWRITES the given baseline
109109
bench-ci baseline target="release" features="":
110110
cd src/hyperlight_wasm && cargo bench --profile={{ if target == "debug" {"dev"} else { target } }} {{ if features =="" {''} else { "--features " + features } }} --bench benchmarks -- --verbose --save-baseline {{baseline}}
111-
cd src/hyperlight_wasm && {{wit-world-c}} cargo bench --profile={{ if target == "debug" {"dev"} else { target } }} {{ if features =="" {''} else { "--features " + features } }} --bench benchmarks_components -- --verbose --save-baseline {{baseline}}-components
111+
cd src/hyperlight_wasm; {{wit-world-c}} cargo bench --profile={{ if target == "debug" {"dev"} else { target } }} {{ if features =="" {''} else { "--features " + features } }} --bench benchmarks_components -- --verbose --save-baseline {{baseline}}-components
112112
bench target="release" features="": (bench-wasm target features) (bench-components target features)
113113
bench-wasm target="release" features="":
114114
cd src/hyperlight_wasm && cargo bench --profile={{ if target == "debug" {"dev"} else { target } }} {{ if features =="" {''} else { "--features " + features } }} --bench benchmarks -- --verbose
115115
bench-components target="release" features="":
116-
cd src/hyperlight_wasm && {{wit-world-c}} cargo bench --profile={{ if target == "debug" {"dev"} else { target } }} {{ if features =="" {''} else { "--features " + features } }} --bench benchmarks_components -- --verbose
116+
cd src/hyperlight_wasm; {{wit-world-c}} cargo bench --profile={{ if target == "debug" {"dev"} else { target } }} {{ if features =="" {''} else { "--features " + features } }} --bench benchmarks_components -- --verbose
117117
bench-download os hypervisor cpu tag="":
118118
gh release download {{ tag }} -D ./src/hyperlight_wasm/target/ -p benchmarks_{{ os }}_{{ hypervisor }}_{{ cpu }}.tar.gz
119119
mkdir {{ mkdir-arg }} ./src/hyperlight_wasm/target/criterion

0 commit comments

Comments
 (0)