Skip to content

Commit fa0cc02

Browse files
author
MarcoFalke
committed
ci: Mute depends logs completely
1 parent fa906bf commit fa0cc02

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/test/05_before_script.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ if [ -z "$NO_DEPENDS" ]; then
3333
else
3434
SHELL_OPTS="CONFIG_SHELL="
3535
fi
36-
DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS
36+
# 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
3739
fi
3840
if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then
3941
BEGIN_FOLD previous-versions

0 commit comments

Comments
 (0)