diff options
| author | MarcoFalke <[email protected]> | 2020-06-14 10:23:57 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-06-14 11:33:25 -0400 |
| commit | fa7166759789c1282609ff3ab2e80d4f70910a9f (patch) | |
| tree | 4ee13ee28b11c0d80463826f078a1b0e23cf3064 /ci/test | |
| parent | Merge #19261: refactor: Drop ::HasWallets() (diff) | |
| download | discoin-fa7166759789c1282609ff3ab2e80d4f70910a9f.tar.xz discoin-fa7166759789c1282609ff3ab2e80d4f70910a9f.zip | |
ci: Move travis workarounds to .travis.yml
Diffstat (limited to 'ci/test')
| -rwxr-xr-x | ci/test/05_before_script.sh | 4 | ||||
| -rwxr-xr-x | ci/test/06_script_b.sh | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/ci/test/05_before_script.sh b/ci/test/05_before_script.sh index efaaf154b..368550452 100755 --- a/ci/test/05_before_script.sh +++ b/ci/test/05_before_script.sh @@ -33,9 +33,7 @@ if [ -z "$NO_DEPENDS" ]; then else SHELL_OPTS="CONFIG_SHELL=" fi - # 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 + DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS fi if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then BEGIN_FOLD previous-versions diff --git a/ci/test/06_script_b.sh b/ci/test/06_script_b.sh index 51d84ee39..0d23d9eed 100755 --- a/ci/test/06_script_b.sh +++ b/ci/test/06_script_b.sh @@ -21,8 +21,6 @@ if [ -n "$USE_VALGRIND" ]; then END_FOLD fi -bash -c "${CI_WAIT}" & # Print dots in case the tests take a long time to run - if [ "$RUN_UNIT_TESTS" = "true" ]; then BEGIN_FOLD unit-tests DOCKER_EXEC LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib make $MAKEJOBS check VERBOSE=1 |