diff --git a/.travis.yml b/.travis.yml index 7c4183700ca..ac2b0d457cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,7 @@ addons: sources: - ubuntu-toolchain-r-test - kalakris-cmake - - llvm-toolchain-precise-3.7 packages: - - clang-format-3.7 - - clang-tidy-3.7 - gcc-4.9 # Needed for C++11 - g++-4.9 # Needed for C++11 - gdb diff --git a/ci/travis_script_cpp.sh b/ci/travis_script_cpp.sh index c9b3b5f1442..9cf4f8e3521 100755 --- a/ci/travis_script_cpp.sh +++ b/ci/travis_script_cpp.sh @@ -7,10 +7,14 @@ set -e pushd $CPP_BUILD_DIR make lint -if [ $TRAVIS_OS_NAME == "linux" ]; then - make check-format - make check-clang-tidy -fi + +# ARROW-209: checks depending on the LLVM toolchain are disabled temporarily +# until we are able to install the full LLVM toolchain in Travis CI again + +# if [ $TRAVIS_OS_NAME == "linux" ]; then +# make check-format +# make check-clang-tidy +# fi ctest -L unittest