You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by bp...@apache.org on 2016/01/08 10:13:45 UTC

celix git commit: CELIX-330: re-enable build restriction for coverity

Repository: celix
Updated Branches:
  refs/heads/develop 2802d4630 -> 6a4d86aaf


CELIX-330: re-enable build restriction for coverity


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

Branch: refs/heads/develop
Commit: 6a4d86aafa1da731fdad7001b1de6f7aa7cd979f
Parents: 2802d46
Author: Bjoern Petri <bp...@apache.org>
Authored: Fri Jan 8 10:13:25 2016 +0100
Committer: Bjoern Petri <bp...@apache.org>
Committed: Fri Jan 8 10:13:25 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/celix/blob/6a4d86aa/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 62d3a8d..ffe8c98 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  % 1 )) -eq 0 ]; then make clean & eval "$COVERITY_SCAN_BUILD"; fi
+        if [ $(( $TRAVIS_BUILD_NUMBER  % 10 )) -eq 0 ]; then make clean & eval "$COVERITY_SCAN_BUILD"; fi
       fi;