Skip to content

Commit e3676e2

Browse files
committed
Don't include parsed_args.framework in the artifact storage path, we shouldn't need it as the problem was due to dotnet_mono conflicts.
1 parent 515e58d commit e3676e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/benchmarks_local.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def generate_layout(parsed_args: Namespace, repo_path: str, additional_args: Lis
131131
RunCommand(generate_layout_command, verbose=True).run(os.path.join(repo_path, "src", "tests"))
132132

133133
def get_run_artifact_path(parsed_args: Namespace, run_type: RunType, commit: str) -> str:
134-
return os.path.join(parsed_args.artifact_storage_path, f"{run_type.name}-{commit}-{parsed_args.os}-{parsed_args.architecture}-{parsed_args.framework}")
134+
return os.path.join(parsed_args.artifact_storage_path, f"{run_type.name}-{commit}-{parsed_args.os}-{parsed_args.architecture}")
135135

136136
def get_mono_corerun(parsed_args: Namespace, run_type: RunType, commit: str) -> str:
137137
corerun_capture = glob.glob(os.path.join(get_run_artifact_path(parsed_args, run_type, commit), "dotnet_mono", "shared", "Microsoft.NETCore.App", f"*", f'corerun{".exe" if is_windows(parsed_args) else ""}'))

0 commit comments

Comments
 (0)