From c76d4f7041aa0317438e509942f437069c48d505 Mon Sep 17 00:00:00 2001 From: Florian Fischer <florian.fl.fischer@fau.de> Date: Sun, 29 May 2022 14:05:51 +0200 Subject: [PATCH] include the git checkout of the artifact in the describtion --- eval.py | 1 + 1 file changed, 1 insertion(+) diff --git a/eval.py b/eval.py index f4dea7f..34eb24e 100755 --- a/eval.py +++ b/eval.py @@ -46,6 +46,7 @@ def write_desc(data_dir): """Write a YAML description of the evaluation into result_dir""" desc_file_path = data_dir / 'desc.yml' with open(desc_file_path, 'w', encoding='utf-8') as desc_file: + print(f'artifact-desc: {ARTIFACT_DESC}', file=desc_file) print(f'start: {start_time.isoformat()}', file=desc_file) print(f'argv: {sys.argv}', file=desc_file) print(f'client-args: {ARGS}', file=desc_file) -- GitLab