From 2fa867e8d021d439627288d3ad631ba3854b95aa Mon Sep 17 00:00:00 2001 From: Mark Stemm Date: Fri, 13 Oct 2017 12:06:25 -0700 Subject: [PATCH] Try using system cmake We were installing cmake 3.3.2, while the travis vms have 3.2.2, which might be new enough. --- .travis.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 892997b2..a7ad75b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,13 +26,6 @@ script: - set -e - export CC="gcc-4.8" - export CXX="g++-4.8" - - wget https://s3.amazonaws.com/download.draios.com/dependencies/cmake-3.3.2.tar.gz - - tar -xzf cmake-3.3.2.tar.gz - - cd cmake-3.3.2 - - ./bootstrap --prefix=/usr - - make - - sudo make install - - cd .. - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DDRAIOS_DEBUG_FLAGS="-D_DEBUG -DNDEBUG"