Skip to content

Commit

Permalink
dep_rust.yml fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
marosset committed Jan 14, 2025
1 parent f450039 commit b0c3f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ run-rust-examples target=default-target features="": (build-rust target)
{{ set-trace-env-vars }} cargo run --profile={{ if target == "debug" { "dev" } else { target } }} --example logging

# The two tracing examples are flaky on windows so we run them on linux only for now, need to figure out why as they run fine locally on windows
run-rust-examples-linux target=default-target: (build-rust target) (run-rust-examples target features)
run-rust-examples-linux target=default-target features="": (build-rust target) (run-rust-examples target features)
{{ set-trace-env-vars }} cargo run --profile={{ if target == "debug" { "dev" } else { target } }} --example tracing {{ if features =="" {''} else { "--features " + features } }}
{{ set-trace-env-vars }} cargo run --profile={{ if target == "debug" { "dev" } else { target } }} --example tracing {{ if features =="" {"--features function_call_metrics" } else {"--features function_call_metrics," + features} }}

Expand Down

0 comments on commit b0c3f08

Please sign in to comment.