Merge pull request #243 from andrewgaul/cppcheck-travis

Run cppcheck during Travis builds
This commit is contained in:
Takeshi Nakatani 2015-08-20 01:20:15 +09:00
commit a3568a1419

View File

@ -3,11 +3,12 @@ dist: trusty
cache: apt cache: apt
before_install: before_install:
- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get install -qq libfuse-dev - sudo apt-get install -qq libfuse-dev cppcheck
script: script:
- ./autogen.sh - ./autogen.sh
- ./configure - ./configure
- make - make
- make cppcheck
- make check -C src - make check -C src
# Travis granted s3fs access to their upcoming alpha testing stack which may # Travis granted s3fs access to their upcoming alpha testing stack which may
# allow us to use FUSE. # allow us to use FUSE.