diff options
author | Wu Xiaotian <[email protected]> | 2019-04-30 18:12:23 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-05-04 19:38:39 +0200 |
commit | b18628754ad37fb67c3421ece87e9e63507de123 (patch) | |
tree | d90a5614a96296478588817f6c06516fa533a6d7 | |
parent | 8e411ce5d0e5a623b1e57f407b5a4e121ed5316b (diff) | |
download | pluma-b18628754ad37fb67c3421ece87e9e63507de123.tar.bz2 pluma-b18628754ad37fb67c3421ece87e9e63507de123.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 6f9fc984..b50ab176 100644 --- a/.travis.yml +++ b/.travis.yml @@ -111,6 +111,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/pluma.git - clang - clang-analyzer + - cppcheck-htmlreport - desktop-file-utils - enchant-devel - gcc @@ -184,7 +185,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/accessories-text-editor.png + - 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 -i https://github.com/${OWNER_NAME}/mate-icon-theme/raw/master/mate/16x16/apps/accessories-text-editor.png - fi - make distcheck |