This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via e819c669f474bba418c5897b6cdcf945da25c75e (commit) from 21ddf9b672ed6dd4254d4df1b1a414cb73306833 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit e819c669f474bba418c5897b6cdcf945da25c75e Author: Mike Holmes mike.holmes@linaro.org Date: Fri Nov 18 13:34:22 2016 -0500
travis.yml: add coverity support
Enables static analysis when pushing to a branch coverity_scan on github See https://scan.coverity.com/travis_ci
Signed-off-by: Mike Holmes mike.holmes@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/.travis.yml b/.travis.yml index 1092cd0..adf3307 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,17 @@ # Copyright (c) 2016, Linaro Limited # All rights reserved. # SPDX-License-Identifier: BSD-3-Clause +# +# Please update xxxx for your coverity token and notification email if required +# pushing to github/master will run make check +# pushing to github/coverity_scan will also launch a static analysis +# See https://scan.coverity.com/travis_ci
- +env: + global: + # COVERITY_SCAN_TOKEN + # ** specific to your project ** + - secure: "xxxx"
language: c compiler: clang @@ -47,3 +56,12 @@ script: - ./configure - make doxygen-doc - make distcheck + +addons: + coverity_scan: + project: + name: "$TRAVIS_REPO_SLUG" + notification_email: xxxx + build_command_prepend: "./bootstrap && ./configure --enable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-user-guides --enable-test-perf-proc --enable-test-example" + build_command: "make" + branch_pattern: coverity_scan
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-)
hooks/post-receive