diff options
author | Pablo Barciela <[email protected]> | 2019-05-31 09:42:02 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2019-05-31 09:57:21 +0200 |
commit | d99a587d4ffadce00c4b0f29cc6501a036d7e857 (patch) | |
tree | f528c388984d6ceb06db64a74118348483c13ada | |
parent | adf5920f13380611d5e5b5cb712e5b2e6b1eed9c (diff) | |
download | mate-applets-d99a587d4ffadce00c4b0f29cc6501a036d7e857.tar.bz2 mate-applets-d99a587d4ffadce00c4b0f29cc6501a036d7e857.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 2f61d41f..cd8591f4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -117,6 +117,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-applets.git - clang - clang-analyzer + - cppcheck-htmlreport - gcc - git - gtksourceview3-devel @@ -209,7 +210,9 @@ build_scripts: after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then - - ./gen-index -i https://github.com/${OWNER_NAME}/mate-applets/raw/master/cpufreq/pixmaps/cpufreq-100.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-applets/raw/master/cpufreq/pixmaps/cpufreq-100.png - fi - make distcheck |