Skip to content

Commit

Permalink
add instalablerutime to report folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
robertomonteromiguel committed Nov 22, 2024
1 parent 17753a6 commit b3b0808
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/docker_ssi/docker_ssi_matrix_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def generate_gitlab_pipeline(languages):
'cp -R logs_"${SCENARIO_SUFIX}" $REPORTS_PATH/',
'cleaned_base_image=$(echo "$base_image" | tr -cd "[:alnum:]_")',
'cleaned_arch=$(echo "$arch" | tr -cd "[:alnum:]_")',
'mv "$REPORTS_PATH"/logs_"${SCENARIO_SUFIX}" "$REPORTS_PATH"/logs_"${TEST_LIBRARY}"_"${weblog}"_"${SCENARIO_SUFIX}_${cleaned_base_image}_${cleaned_arch}"',
'cleaned_runtime=$(echo "$installable_runtime" | tr -cd "[:alnum:]_")',
'mv "$REPORTS_PATH"/logs_"${SCENARIO_SUFIX}" "$REPORTS_PATH"/logs_"${TEST_LIBRARY}"_"${weblog}"_"${SCENARIO_SUFIX}_${cleaned_base_image}_${cleaned_arch}_${cleaned_runtime}"',
],
"artifacts": {"when": "always", "paths": ["reports/"]},
},
Expand Down

0 comments on commit b3b0808

Please sign in to comment.