Skip to content

Commit 7e3fc41

Browse files
committed
ci: aarch64: address comments
1 parent 6532097 commit 7e3fc41

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/automation/performance/bench_nightly_performance.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ TESTS=(
3434
"$2 --reorder --mode=P --perf-template=%prb%,%-time% --batch=${SCRIPT_DIR}/inputs/reorder_nightly >> $4"
3535
)
3636

37-
for i in {1..5}
37+
N = 5
38+
39+
for i in {1..$N}
3840
do
39-
echo "Testing loop ${i} / 5..."
41+
echo "Testing loop ${i} / ${N}..."
4042

4143
TESTS=( $(shuf -e "${TESTS[@]}") )
4244

.github/automation/performance/bench_pr_performance.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ TESTS=(
3333
"$2 --reorder --mode=P --perf-template=%prb%,%-time% --batch=${SCRIPT_DIR}/inputs/reorder >> $4"
3434
)
3535

36-
for i in {1..5}
36+
N = 5
37+
38+
for i in {1..$N}
3739
do
38-
echo "Testing loop ${i} / 5..."
40+
echo "Testing loop ${i} / ${N}..."
3941

4042
TESTS=( $(shuf -e "${TESTS[@]}") )
4143

0 commit comments

Comments
 (0)