Skip to content

Commit f4d8a3f

Browse files
committed
fix bug
1 parent beb2942 commit f4d8a3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

devops/actions/benchmarking/aggregate/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ runs:
6969
#
7070
# Thus, a min/max depth of 3 is used to enumerate all test cases in the
7171
# 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
72+
find "$SANITIZED_PERF_RES_PATH" -mindepth 3 -maxdepth 3 -type d ! -path '*.git*' |
73+
while read -r dir; do
7374
test_name="$(basename "$dir")"
7475
python ./devops/scripts/benchmarking/aggregate.py ./devops "$test_name" "$dir" "$SANITIZED_TIMESTAMP"
7576
done

0 commit comments

Comments
 (0)