Skip to content

Commit 6574095

Browse files
committed
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 <wesm@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
1 parent c8b8078 commit 6574095

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ addons:
55
sources:
66
- ubuntu-toolchain-r-test
77
- kalakris-cmake
8-
- llvm-toolchain-precise-3.7
98
packages:
10-
- clang-format-3.7
11-
- clang-tidy-3.7
129
- gcc-4.9 # Needed for C++11
1310
- g++-4.9 # Needed for C++11
1411
- gdb

ci/travis_script_cpp.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ set -e
77
pushd $CPP_BUILD_DIR
88

99
make lint
10-
if [ $TRAVIS_OS_NAME == "linux" ]; then
11-
make check-format
12-
make check-clang-tidy
13-
fi
10+
11+
# ARROW-209: checks depending on the LLVM toolchain are disabled temporarily
12+
# until we are able to install the full LLVM toolchain in Travis CI again
13+
14+
# if [ $TRAVIS_OS_NAME == "linux" ]; then
15+
# make check-format
16+
# make check-clang-tidy
17+
# fi
1418

1519
ctest -L unittest
1620

0 commit comments

Comments
 (0)