diff options
author | Pablo Barciela <[email protected]> | 2019-05-09 21:02:49 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-05-10 15:23:26 +0200 |
commit | 5d3b1f16a0458ac84611d208cb979ea3efec63ab (patch) | |
tree | f8158208fb3d87a22c7d8502bbcb683b3bf3cce0 | |
parent | 29bf4d9eaa31ee2ad64453267de60beffacde186 (diff) | |
download | mate-settings-daemon-5d3b1f16a0458ac84611d208cb979ea3efec63ab.tar.bz2 mate-settings-daemon-5d3b1f16a0458ac84611d208cb979ea3efec63ab.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 c6f1a49..185e8a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -120,6 +120,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-settings-daemon.git - clang - clang-analyzer + - cppcheck-htmlreport - dbus-glib-devel - dconf-devel - desktop-file-utils @@ -220,7 +221,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 -i'mate-desktop-1.21.2' . + - 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 |