Skip to content
Snippets Groups Projects
Commit 4b43096a authored by DaGeRe's avatar DaGeRe
Browse files

Also store standard deviation for GH actions

parent 494ee800
No related branches found
No related tags found
No related merge requests found
......@@ -9,13 +9,15 @@ result="["
for variant in $MOOBENCH_CONFIGURATIONS
do
value=$(
values=$(
for file in $(ls raw-*-$size-$variant.csv)
do
cat $file | awk -F';' '{print $2}' | getSum | awk '{print $2}'
done | getSum | awk '{print $2}')
done | getSum)
value=$(echo $values | awk '{print $2}')
standardDeviation=$(echo $values | awk '{print $5}')
result="$result{\"name\": \"Configuration $variant\", \"unit\": \"ns\", \"value\": $value},"
result="$result{\"name\": \"Configuration $variant\", \"unit\": \"ns\", \"value\": $value, \"range\": $standardDeviation},"
done
withoutLastKomma=${result::-1}
......
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