diff options
author | Pablo Barciela <[email protected]> | 2019-05-05 14:53:33 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-05-07 10:05:44 +0200 |
commit | 4993f0eaa7860b7bf7408172a612d7a12c09bbb9 (patch) | |
tree | b1e63edb16514e787496576f3f037d46a4a54b75 /.travis.yml | |
parent | a110c542bd7a16625f03c97e2fefa3be8da50c85 (diff) | |
download | caja-4993f0eaa7860b7bf7408172a612d7a12c09bbb9.tar.bz2 caja-4993f0eaa7860b7bf7408172a612d7a12c09bbb9.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 24f766f8..775472c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -111,6 +111,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/caja.git/ - clang-analyzer - clang + - cppcheck-htmlreport - git - gcc - make @@ -191,7 +192,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/system-file-manager.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/system-file-manager.png - fi - make distcheck |