We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa906bf commit fa0cc02Copy full SHA for fa0cc02
ci/test/05_before_script.sh
@@ -33,7 +33,9 @@ if [ -z "$NO_DEPENDS" ]; then
33
else
34
SHELL_OPTS="CONFIG_SHELL="
35
fi
36
- DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS
+ # Temporary workaround for https://github.com/bitcoin/bitcoin/issues/16368
37
+ python3 -c 'import time; [print(".") or time.sleep(500) for _ in range(4)]' &
38
+ ( DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS ) &> /dev/null
39
40
if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then
41
BEGIN_FOLD previous-versions
0 commit comments