Revert "travis: try to run clang analyzer upon build time"

This reverts commit 4fa38bb62e.

Apparently scan-build isn't installed by default, therefore
something like the following would be needed:

 sudo add-apt-repository "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise main"
 sudo add-apt-repository "deb http://llvm.org/apt/precise/ llvm-toolchain-precise-${CLANG_VERSION} main"
 wget -q -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
 sudo apt-get update -qq
 sudo apt-get install -y -q clang-${CLANG_VERSION}
This commit is contained in:
Marc André Tanner 2015-02-16 22:13:00 +01:00
parent 4fa38bb62e
commit 678c509f3d
1 changed files with 1 additions and 2 deletions

View File

@ -5,5 +5,4 @@ compiler:
env:
- DEBUG=
- DEBUG=debug
- SCANBUILD=scan-build
script: $SCANBUILD make $DEBUG
script: make $DEBUG