You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2016/06/03 01:36:52 UTC

arrow git commit: ARROW-209: [C++] Triage builds due to unavailable LLVM apt repo

Repository: arrow
Updated Branches:
  refs/heads/master c8b807881 -> 65740950c


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 <we...@apache.org>

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


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/65740950
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/65740950
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/65740950

Branch: refs/heads/master
Commit: 65740950c852b82c475ca84e970e147d25d27398
Parents: c8b8078
Author: Wes McKinney <we...@apache.org>
Authored: Thu Jun 2 18:36:43 2016 -0700
Committer: Wes McKinney <we...@apache.org>
Committed: Thu Jun 2 18:36:43 2016 -0700

----------------------------------------------------------------------
 .travis.yml             |  3 ---
 ci/travis_script_cpp.sh | 12 ++++++++----
 2 files changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/65740950/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 7c41837..ac2b0d4 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

http://git-wip-us.apache.org/repos/asf/arrow/blob/65740950/ci/travis_script_cpp.sh
----------------------------------------------------------------------
diff --git a/ci/travis_script_cpp.sh b/ci/travis_script_cpp.sh
index c9b3b5f..9cf4f8e 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