Skip to content

Commit b7e0481

Browse files
committed
[Justfile] fix like-ci recipe
Previously, it still passed an extra config parameter when running bench-ci, which caused issues. Signed-off-by: Lucy Menon <168595099+syntactically@users.noreply.github.com>
1 parent c5e9a56 commit b7e0481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ like-ci config=default-target hypervisor="kvm":
140140
{{ if os() == "linux" { "just test-rust-tracing " + config + " " + if hypervisor == "mshv" { "mshv2" } else if hypervisor == "mshv3" { "mshv3" } else { "kvm" } } else { "" } }}
141141

142142
@# Run benchmarks
143-
{{ if config == "release" { "just bench-ci main " + config + " " + if hypervisor == "mshv" { "mshv2" } else if hypervisor == "mshv3" { "mshv3" } else { "kvm" } } else { "" } }}
143+
{{ if config == "release" { "just bench-ci main " + if hypervisor == "mshv" { "mshv2" } else if hypervisor == "mshv3" { "mshv3" } else { "kvm" } } else { "" } }}
144144

145145
# runs all tests
146146
test target=default-target features="": (test-unit target features) (test-isolated target features) (test-integration "rust" target features) (test-integration "c" target features) (test-seccomp target features) (test-doc target features)

0 commit comments

Comments
 (0)