diff options
author | Pablo Barciela <[email protected]> | 2019-04-30 00:10:22 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-04-30 00:37:00 +0200 |
commit | 8e411ce5d0e5a623b1e57f407b5a4e121ed5316b (patch) | |
tree | a50afbebad5ec70b69df4d1b3f3124da0a325aa1 | |
parent | 65a16624dad93741935398314e4373ab1cdb9393 (diff) | |
download | pluma-8e411ce5d0e5a623b1e57f407b5a4e121ed5316b.tar.bz2 pluma-8e411ce5d0e5a623b1e57f407b5a4e121ed5316b.tar.xz |
travis: enable 'cppcheck' in debian
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 492fc922..6f9fc984 100644 --- a/.travis.yml +++ b/.travis.yml @@ -87,6 +87,7 @@ requires: # Useful URL: https://salsa.debian.org/debian-mate-team/pluma - clang - clang-tools + - cppcheck - gcc - git - gobject-introspection @@ -177,6 +178,9 @@ build_scripts: - else - scan-build $CHECKERS --keep-cc -o html-report make - fi + - if [ ${DISTRO_NAME} == "debian" ];then + - cppcheck --enable=warning,style,performance,portability,information,missingInclude . + - fi after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then |