We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beb2942 commit f4d8a3fCopy full SHA for f4d8a3f
devops/actions/benchmarking/aggregate/action.yml
@@ -69,7 +69,8 @@ runs:
69
#
70
# Thus, a min/max depth of 3 is used to enumerate all test cases in the
71
# repository. Test name is also derived from here.
72
- for dir in "$(find "$SANITIZED_PERF_RES_PATH" -mindepth 3 -maxdepth 3 -type d ! -path '*.git*')"; do
+ find "$SANITIZED_PERF_RES_PATH" -mindepth 3 -maxdepth 3 -type d ! -path '*.git*' |
73
+ while read -r dir; do
74
test_name="$(basename "$dir")"
75
python ./devops/scripts/benchmarking/aggregate.py ./devops "$test_name" "$dir" "$SANITIZED_TIMESTAMP"
76
done
0 commit comments