diff options
author | Florian Walch <florian@fwalch.com> | 2015-06-08 19:28:32 +0300 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2015-06-09 10:29:07 +0300 |
commit | 232c40b40a56eb30c7a6732368eb631e1e58fc7c (patch) | |
tree | 7b8104f82b0a06963f2e55a3257fdc0716928c66 | |
parent | 9995f15a98e8e1c75458a455b1a3ced8c155e634 (diff) | |
download | rneovim-232c40b40a56eb30c7a6732368eb631e1e58fc7c.tar.gz rneovim-232c40b40a56eb30c7a6732368eb631e1e58fc7c.tar.bz2 rneovim-232c40b40a56eb30c7a6732368eb631e1e58fc7c.zip |
Travis: Disable Valgrind in GCC build. #2806
With Valgrind, the GCC build frequently passed the 50 min timeout on
Travis.
-rw-r--r-- | .ci/gcc.sh | 11 |
1 files 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 |