Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions scripts/run_performance_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ def get_run_configurations(

if runtime_type == "wasm":
configurations["CompilationMode"] = "wasm"
configurations["RuntimeType"] = str(runtime_flavor)
if is_aot:
Comment on lines 521 to 524
configurations["AOT"] = "true"

Expand Down Expand Up @@ -717,6 +718,12 @@ def run_performance_job(args: RunPerformanceJobArgs):
elif wasm:
build_config = f"wasm.{build_config}"

if args.run_kind == "micro":
if args.runtime_type == "wasm":
args.runtime_flavor = "mono"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would this break how the new data are compared to baseline or history ?

elif args.runtime_type == "wasm_coreclr":
args.runtime_flavor = "coreclr"

Comment on lines +721 to +726
if args.run_kind == "android_scenarios":
if args.runtime_type == "AndroidMono":
args.runtime_flavor = "mono"
Expand Down
Loading