diff options
author | Pablo Barciela <[email protected]> | 2019-06-22 20:13:28 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2019-06-22 20:13:28 +0200 |
commit | 2bbe7088a4c0664c72fd2f4867d462d64fd862bb (patch) | |
tree | bb4887f0742736dc5d6f464b764727da74421e7e | |
parent | bf23c6bc830ff62bd404b720184f96c334cf8578 (diff) | |
download | mate-netbook-2bbe7088a4c0664c72fd2f4867d462d64fd862bb.tar.bz2 mate-netbook-2bbe7088a4c0664c72fd2f4867d462d64fd862bb.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 7af19de..06e4cd6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,6 +96,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-backgrounds.git - clang - clang-analyzer + - cppcheck-htmlreport - gcc - desktop-file-utils - git @@ -158,7 +159,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 . + - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport + - ./gen-index -l 20 - fi - make distcheck |