diff options
author | Pablo Barciela <[email protected]> | 2019-05-18 12:35:43 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-05-18 12:53:56 +0200 |
commit | bdc9ecb56af022a4f2c0474c2fa1d30a916e04ef (patch) | |
tree | ee3e5a45a1fac838ca9b2f34fe5ccb83a5fac02b /.travis.yml | |
parent | 6e10112dc88e9d8d79e01b3402a1605f522daf05 (diff) | |
download | mate-notification-daemon-bdc9ecb56af022a4f2c0474c2fa1d30a916e04ef.tar.bz2 mate-notification-daemon-bdc9ecb56af022a4f2c0474c2fa1d30a916e04ef.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 1bb32fd..0900d69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -109,6 +109,7 @@ requires: # Useful URL: https://src.fedoraproject.org/cgit/rpms/mate-notification-daemon.git - clang - clang-analyzer + - cppcheck-htmlreport - desktop-file-utils - file - git @@ -176,7 +177,9 @@ build_scripts: after_scripts: - if [ ${DISTRO_NAME} == "fedora" ];then - - ./gen-index -i https://github.com/${OWNER_NAME}/mate-notification-daemon/raw/master/data/icons/16x16/mate-notification-properties.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-notification-daemon/raw/master/data/icons/16x16/mate-notification-properties.png - fi - make distcheck |