From 65740950c852b82c475ca84e970e147d25d27398 Mon Sep 17 00:00:00 2001 From: Wes McKinney Date: Thu, 2 Jun 2016 18:36:43 -0700 Subject: [PATCH] ARROW-209: [C++] Triage builds due to unavailable LLVM apt repo For now, this unblocks builds until we can resolve the LLVM apt issue. Author: Wes McKinney Closes #84 from wesm/ARROW-209 and squashes the following commits: c6bf166 [Wes McKinney] Remove clang-* packages from apt list 30d8c5c [Wes McKinney] Temporarily disable clang-format and clang-tidy checks in Travis CI build --- .travis.yml | 3 --- ci/travis_script_cpp.sh | 12 ++++++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7c4183700ca10..ac2b0d457cb8e 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 c9b3b5f1442a1..9cf4f8e352109 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