diff options
author | Pablo Barciela <[email protected]> | 2019-04-22 16:26:41 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-04-22 17:24:14 +0200 |
commit | 2ef31569b2edba5e2b229063356a32e10d56853f (patch) | |
tree | 6f95620cd30bbde77d7dac89a5d3ac76ceb58818 | |
parent | 36d100a5add33151ac7fc94dd5c0a5ac50a6d119 (diff) | |
download | atril-2ef31569b2edba5e2b229063356a32e10d56853f.tar.bz2 atril-2ef31569b2edba5e2b229063356a32e10d56853f.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 f69c8b5c..6be9e009 100644 --- a/.travis.yml +++ b/.travis.yml @@ -86,6 +86,7 @@ requires: # Useful URL: https://salsa.debian.org/debian-mate-team/atril - clang - clang-tools + - cppcheck - git - gobject-introspection - intltool @@ -199,6 +200,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 --force . + - fi after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then |