diff options
author | Pablo Barciela <[email protected]> | 2019-07-06 14:26:52 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2019-07-06 14:26:52 +0200 |
commit | 26974e4da2d53490dd8a115e57a9bd886cbe242f (patch) | |
tree | 4c16c8132fbb0f53e132f7f88004414e50b07a06 /.travis.yml | |
parent | 96c8c25a8fdcf5e96f1f4aa917a0c83e7fee5eed (diff) | |
download | mate-polkit-26974e4da2d53490dd8a115e57a9bd886cbe242f.tar.bz2 mate-polkit-26974e4da2d53490dd8a115e57a9bd886cbe242f.tar.xz |
[ci] Add cppcheck html report
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index d0204e1..9cbdabe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -93,6 +93,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-polkit.git - clang - clang-analyzer + - cppcheck-htmlreport - gcc - git - gtk3-devel @@ -151,7 +152,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 |