Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 8 additions & 4 deletions ci/travis_script_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down