Skip to content

Commit

Permalink
Revert "travis-ci: use travis_retry to reduce number of problems with…
Browse files Browse the repository at this point in the history
… flacky tests"

That was a bad idea, because all this patch did is just uses extra CPU
time on travis-ci workers and eventually fail the build anyway.

It also increases time of executing one matrix entry (x3).

This reverts commit 7004ee8.
  • Loading branch information
azat committed Oct 21, 2018
1 parent bd2184d commit fb090aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ script:
./autogen.sh &&
./configure $EVENT_CONFIGURE_OPTIONS &&
make &&
travis_retry travis_wait $TIMEOUT make -j $JOBS verify;
travis_wait $TIMEOUT make -j $JOBS verify;
fi
- if [ "$EVENT_BUILD_METHOD" = "cmake" ]; then
export
Expand All @@ -88,7 +88,7 @@ script:
mkdir build &&
cd build &&
cmake .. $EVENT_CMAKE_OPTIONS &&
travis_retry travis_wait $TIMEOUT
travis_wait $TIMEOUT
cmake --build . --target verify;
fi

Expand Down

0 comments on commit fb090aa

Please sign in to comment.