From 91a9260a16041ba520c8e9f8aaca27794864b3ba Mon Sep 17 00:00:00 2001 From: Huon Wilson Date: Fri, 28 Aug 2015 22:59:00 -0700 Subject: [PATCH] Run tidy by itself on travis. It is very difficult to find tidy problems in the midst of the output of the LLVM/jemalloc/etc. build, and travis is great for the former, so lets remove that problem. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 10545b9097418..d8cd7f9b1f96c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ sudo: false before_script: - ./configure --enable-ccache script: - - make tidy check -j4 + - make tidy && make check -j4 env: - CXX=/usr/bin/g++-4.7