From: Azat Khuzhin Date: Mon, 13 Jan 2020 19:24:54 +0000 (+0300) Subject: travis-ci: drop travis_wait (does not work with sub processes) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbe6f7d92a080f68cbae6d6ad646b6fea1e97113;p=libevent travis-ci: drop travis_wait (does not work with sub processes) Refs: https://github.com/travis-ci/travis-ci/issues/8526 --- 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