diff options
author | Pablo Barciela <[email protected]> | 2019-05-10 20:32:26 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-05-15 09:04:09 +0200 |
commit | 8f46993705947b1a12eac88c58a5d7b5942d3d5c (patch) | |
tree | 4116e245d809e2a061324f68bc1f97b53b126063 | |
parent | 16a123b45109b3c56be7ce0b454078c67fb8cade (diff) | |
download | marco-8f46993705947b1a12eac88c58a5d7b5942d3d5c.tar.bz2 marco-8f46993705947b1a12eac88c58a5d7b5942d3d5c.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 1c5a6cb1..dc66dc59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -118,6 +118,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/marco.git - clang-analyzer - clang + - cppcheck-htmlreport - desktop-file-utils - gcc - git @@ -198,7 +199,9 @@ build_scripts: after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then - - ./gen-index -i https://github.com/${OWNER_NAME}/mate-icon-theme/raw/master/mate/16x16/apps/preferences-system-windows.png + - cppcheck --xml --output-file=cppcheck.xml --enable=warning,style,performance,portability,information,missingInclude --force . + - cppcheck-htmlreport --title=${REPO_NAME} --file=cppcheck.xml --report-dir=cppcheck-htmlreport + - ./gen-index -l 20 -i https://github.com/${OWNER_NAME}/mate-icon-theme/raw/master/mate/16x16/apps/preferences-system-windows.png - fi - make distcheck |