Skip to content

Commit bee9fde

Browse files
committed
Add debug statements
1 parent b173212 commit bee9fde

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tools/ci/circle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,10 +302,11 @@ main() {
302302
on_error 1
303303
fi
304304

305-
# Assign nodes (VMs) tasks...
305+
echo 'Assigning initial tasks...' >&2
306306
i="${index}"
307307
while [[ "${i}" -lt "${len}" ]]; do
308308
task="${TASKS}[${i}]"
309+
echo "Task: ${task}." >&2
309310
if [[ "${task}" = "check_deps" ]]; then
310311
check_deps "${log_file}"
311312
if [[ "$?" -ne 0 ]]; then
@@ -320,7 +321,7 @@ main() {
320321
i=$(expr "${i}" + "${len}")
321322
done
322323

323-
# Assign nodes (VMs) tests to run...
324+
echo 'Allocating tests...' >&2
324325
tests=$(allocate_tests "${total_nodes}" "${index}")
325326
run_tests "${tests}" "${tests_log_file}"
326327
if [[ "$?" -ne 0 ]]; then

0 commit comments

Comments
 (0)