diff options
author | Pablo Barciela <[email protected]> | 2019-04-21 01:11:06 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-04-21 01:36:44 +0200 |
commit | 6c80b48c161e180cdd4af2358185aa7ed6bb7263 (patch) | |
tree | d6c890f22206b5b9e93b95ff0c286ed823fee3ff /.travis.yml | |
parent | a344e2b0f7e9101dc82c2e2cfcf219772a497822 (diff) | |
download | engrampa-6c80b48c161e180cdd4af2358185aa7ed6bb7263.tar.bz2 engrampa-6c80b48c161e180cdd4af2358185aa7ed6bb7263.tar.xz |
travis: enable 'cppcheck' in debian
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 8bb9908..f5b21db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,6 +82,7 @@ requires: # Useful URL: https://salsa.debian.org/debian-mate-team/engrampa - clang - clang-tools + - cppcheck - gettext - gcc - git @@ -156,6 +157,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 |