From e30856422adc25b752c0e3de92a58dd468f05fd6 Mon Sep 17 00:00:00 2001 From: Jan Kiene Date: Wed, 4 Dec 2024 09:51:14 +0100 Subject: [PATCH] store copy of WMOPS csv file under special name --- ci/complexity_measurements/getWmops.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci/complexity_measurements/getWmops.sh b/ci/complexity_measurements/getWmops.sh index 1853704863..e50d848f63 100755 --- a/ci/complexity_measurements/getWmops.sh +++ b/ci/complexity_measurements/getWmops.sh @@ -73,7 +73,8 @@ config_file="scripts/config/ci_linux_ltv.json" # get wmops newsletter ivas_format_for_filename=${ivas_format// /-} wmopsFilenameFlcLast=wmops_newsletter_${ivas_format_for_filename}_to_${output_format}__${commit_sha}_${date} -wmopsFilenameFlc=${destDir}/wmops/logs/${wmopsFilenameFlcLast} +wmopsFilenameFlcDir=${destDir}/wmops/logs +wmopsFilenameFlc=${wmopsFilenameFlcDir}/${wmopsFilenameFlcLast} ret_val=0 @@ -92,6 +93,9 @@ ret_val=$? ### WMOPS ${scriptDir}/parseNewsletterWmops.py ${wmopsFilenameFlc}_WMOPS.csv ${wmopsFilenameFlcLast}_WMOPS.csv ${commit_sha} ${shortDate} ${fullDate} >>${destDir}/wmops/log_wmops_all.txt +# create copy of WMOPS csv file with special name to easily get it from artifacts when comparing BASOP to float numbers +cp ${wmopsFilenameFlc}_WMOPS.csv ${wmopsFilenameFlcDir}/latest_WMOPS.csv + # get memory info for webpage ### RAM ${scriptDir}/mergeNewsletterRam.py ${wmopsFilenameFlc}_HEAP.csv ${wmopsFilenameFlc}_STACK.csv >${wmopsFilenameFlc}_RAM.csv -- GitLab