diff options
author | Pablo Barciela <[email protected]> | 2019-06-01 18:34:47 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2019-06-01 18:34:47 +0200 |
commit | ec4f94c40e9e539d64c2b733379d526f7ddcd668 (patch) | |
tree | 7f84e572ef691c949e00266d76caa9887dede63a | |
parent | 3df33f3c4b46322e98bf7ee753a25886df0006eb (diff) | |
download | mate-screensaver-ec4f94c40e9e539d64c2b733379d526f7ddcd668.tar.bz2 mate-screensaver-ec4f94c40e9e539d64c2b733379d526f7ddcd668.tar.xz |
[ci] Add cppcheck html report
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 02dd034..58568a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -117,6 +117,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-screensaver.git - clang - clang-analyzer + - cppcheck-htmlreport - dbus-glib-devel - desktop-file-utils - gcc @@ -226,7 +227,9 @@ build_scripts: after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then - - ./gen-index + - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude -i'mate-menus-build' . + - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport + - ./gen-index -l 20 - fi - make distcheck |