diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-05-30 08:01:03 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-05-30 08:33:44 -0400 |
commit | fa0cc02c0a029133f080680ae9186002a144738f (patch) | |
tree | 818738531f66cc83ccd46bf40c806f28e114aeda /ci | |
parent | fa906bf2988c799765a04c484269f890964ec3ee (diff) |
ci: Mute depends logs completely
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/test/05_before_script.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/test/05_before_script.sh b/ci/test/05_before_script.sh index 3685504524..efaaf154b1 100755 --- a/ci/test/05_before_script.sh +++ b/ci/test/05_before_script.sh @@ -33,7 +33,9 @@ if [ -z "$NO_DEPENDS" ]; then else SHELL_OPTS="CONFIG_SHELL=" fi - DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS + # Temporary workaround for https://github.com/bitcoin/bitcoin/issues/16368 + python3 -c 'import time; [print(".") or time.sleep(500) for _ in range(4)]' & + ( DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS ) &> /dev/null fi if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then BEGIN_FOLD previous-versions |