We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b173212 commit bee9fdeCopy full SHA for bee9fde
1 file changed
tools/ci/circle
@@ -302,10 +302,11 @@ main() {
302
on_error 1
303
fi
304
305
- # Assign nodes (VMs) tasks...
+ echo 'Assigning initial tasks...' >&2
306
i="${index}"
307
while [[ "${i}" -lt "${len}" ]]; do
308
task="${TASKS}[${i}]"
309
+ echo "Task: ${task}." >&2
310
if [[ "${task}" = "check_deps" ]]; then
311
check_deps "${log_file}"
312
if [[ "$?" -ne 0 ]]; then
@@ -320,7 +321,7 @@ main() {
320
321
i=$(expr "${i}" + "${len}")
322
done
323
- # Assign nodes (VMs) tests to run...
324
+ echo 'Allocating tests...' >&2
325
tests=$(allocate_tests "${total_nodes}" "${index}")
326
run_tests "${tests}" "${tests_log_file}"
327
0 commit comments