From 232c40b40a56eb30c7a6732368eb631e1e58fc7c Mon Sep 17 00:00:00 2001 From: Florian Walch Date: Mon, 8 Jun 2015 19:28:32 +0300 Subject: Travis: Disable Valgrind in GCC build. #2806 With Valgrind, the GCC build frequently passed the 50 min timeout on Travis. --- .ci/gcc.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.ci/gcc.sh b/.ci/gcc.sh index 3e4ed505da..2e760c7b68 100644 --- a/.ci/gcc.sh +++ b/.ci/gcc.sh @@ -2,11 +2,12 @@ sudo pip install cpp-coveralls -if [ "$TRAVIS_OS_NAME" = "linux" ]; then - sudo apt-get install valgrind - export VALGRIND=1 - export VALGRIND_LOG="$tmpdir/valgrind-%p.log" -fi +# FIXME: Valgrind temporarily disabled (Timeouts on Travis). +# if [ "$TRAVIS_OS_NAME" = "linux" ]; then +# sudo apt-get install valgrind +# export VALGRIND=1 +# export VALGRIND_LOG="$tmpdir/valgrind-%p.log" +# fi setup_deps x64 -- cgit