diff options
author | Pablo Barciela <[email protected]> | 2019-05-11 18:56:00 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-05-15 08:59:48 +0200 |
commit | 72d949b9c3c58144558c4a33e46ce073b09d362c (patch) | |
tree | 88a9c36378293c75b3961b55b3af58da465296c4 | |
parent | d35e3ca7cc92ff6b854cffc451082a37ba480b35 (diff) | |
download | atril-72d949b9c3c58144558c4a33e46ce073b09d362c.tar.bz2 atril-72d949b9c3c58144558c4a33e46ce073b09d362c.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 6be9e009..0905b7db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -119,6 +119,7 @@ requires: - caja-devel - clang - clang-analyzer + - cppcheck-htmlreport - desktop-file-utils - djvulibre-devel - gcc @@ -206,7 +207,9 @@ build_scripts: after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then - - ./gen-index -i https://github.com/${OWNER_NAME}/atril/raw/master/data/icons/16x16/apps/atril.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}/atril/raw/master/data/icons/16x16/apps/atril.png - fi - make distcheck |