You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2016/01/25 19:01:41 UTC

[25/51] celix git commit: CELIX-333: change restriction of coverity scans to every 5th build

CELIX-333: change restriction of coverity scans to every 5th build


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/d8dbe106
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/d8dbe106
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/d8dbe106

Branch: refs/heads/feature/CELIX-335_deploy_refactoring
Commit: d8dbe106b40b53478b45da17b204fa5e8fc7fdc0
Parents: 1131b82
Author: Bjoern Petri <bp...@apache.org>
Authored: Tue Jan 12 20:42:59 2016 +0100
Committer: Bjoern Petri <bp...@apache.org>
Committed: Tue Jan 12 20:42:59 2016 +0100

----------------------------------------------------------------------
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/d8dbe106/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index ffe8c98..437d125 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,5 +60,5 @@ after_success:
         gem install coveralls-lcov &&
         make coverage &&
         lcx="lcov --output-file=coverage.info " && for i in `find . -name "*.info.cleaned"`; do lcx+=" --add-tracefile=$i"; done && $lcx && coveralls-lcov --repo-token=9dpeTAjiGoQU5hgXFe0ezk65iu40oc3WY coverage.info;
-        if [ $(( $TRAVIS_BUILD_NUMBER  % 10 )) -eq 0 ]; then make clean & eval "$COVERITY_SCAN_BUILD"; fi
+        if [ $(( $TRAVIS_BUILD_NUMBER  % 5 )) -eq 0 ]; then make clean & eval "$COVERITY_SCAN_BUILD"; fi
       fi;