We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9139a6 commit 453ce0eCopy full SHA for 453ce0e
1 file changed
.github/scripts/run-random-tests.sh
@@ -646,6 +646,13 @@ spawn_limited_job() {
646
647
run_component_tests "$component" &
648
bg_pids+=($!)
649
+
650
+ # Brief stagger between spawns: Docker overlayfs (used by GitHub Actions)
651
+ # can return ENOENT for existing files when many processes hit the
652
+ # filesystem simultaneously at startup. Spacing launches reduces the
653
+ # concurrent I/O spike and prevents transient autoload failures on the
654
+ # first test of each component.
655
+ sleep 0.2
656
}
657
658
process_result() {
0 commit comments