From fbe6f7d92a080f68cbae6d6ad646b6fea1e97113 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Mon, 13 Jan 2020 22:24:54 +0300 Subject: [PATCH] travis-ci: drop travis_wait (does not work with sub processes) Refs: https://github.com/travis-ci/travis-ci/issues/8526 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 96825bd6..f8c50cf3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -120,7 +120,7 @@ script: ./autogen.sh && ./configure $EVENT_CONFIGURE_OPTIONS && make && - travis_wait $TIMEOUT make -j $JOBS verify; + make -j $JOBS verify; fi - if [ "$EVENT_BUILD_METHOD" = "cmake" ]; then export @@ -137,7 +137,7 @@ script: cmake --build .; sudo python3 ../test-export/test-export.py shared; else - travis_wait $TIMEOUT cmake --build . --target verify; + cmake --build . --target verify; fi fi - if [ "$TOOL" == "doxygen" ]; then