Skip to content
Snippets Groups Projects
Commit 0014485e authored by Ashwin Kumar Karnad's avatar Ashwin Kumar Karnad
Browse files

update use of record_script_execution_summary

parent 4c0b59e7
No related branches found
No related tags found
1 merge request!88Remove redundant argument to record script execution summary function
Pipeline #374210 passed
This commit is part of merge request !88. Comments created here will be created in the context of that merge request.
...@@ -784,7 +784,7 @@ def prepare_environment(mpsd_release: str, root_dir: Path) -> List[str]: ...@@ -784,7 +784,7 @@ def prepare_environment(mpsd_release: str, root_dir: Path) -> List[str]:
mpsd_release, root_dir mpsd_release, root_dir
) )
record_script_execution_summary( record_script_execution_summary(
mpsd_release, root_dir, spe_branch=spe_branch, spe_commit_hash=spe_commit_hash root_dir, spe_branch=spe_branch, spe_commit_hash=spe_commit_hash
) )
return available_package_sets return available_package_sets
...@@ -935,12 +935,10 @@ def install_environment( ...@@ -935,12 +935,10 @@ def install_environment(
# log the command # log the command
record_script_execution_summary( record_script_execution_summary(
mpsd_release,
root_dir, root_dir,
msg=f"installing {package_set} and logging at {build_log_path}", msg=f"installing {package_set} and logging at {build_log_path}",
) )
record_script_execution_summary( record_script_execution_summary(
mpsd_release,
root_dir, root_dir,
msg=( msg=(
f"CMD: bash {spack_setup_script} {' '.join(install_flags)} " f"CMD: bash {spack_setup_script} {' '.join(install_flags)} "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment