diff options
author | Pablo Barciela <[email protected]> | 2019-06-22 18:25:07 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2019-06-22 18:25:07 +0200 |
commit | e2e3f92289fbad8c408068756dccabf1356ee491 (patch) | |
tree | 141dd0e3c6e05730467a48a2e0c3a24d386ab564 | |
parent | 82ecb94091dfe25f91124833719ed8269d2a1436 (diff) | |
download | mate-indicator-applet-e2e3f92289fbad8c408068756dccabf1356ee491.tar.bz2 mate-indicator-applet-e2e3f92289fbad8c408068756dccabf1356ee491.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 c630635..3185d56 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,6 +96,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-indicator-applet.git - clang - clang-analyzer + - cppcheck-htmlreport - gcc - git - gtk3-devel @@ -158,7 +159,9 @@ build_scripts: after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then - - ./gen-index -i https://github.com/${OWNER_NAME}/mate-indicator-applet/raw/master/data/mate-indicator-applet.svg + - 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-indicator-applet/raw/master/data/mate-indicator-applet.svg - fi - make distcheck |