Commit 998f0016 by Ben Straub

Refine build limitation

parent 53e6f480
...@@ -4,8 +4,13 @@ set -e ...@@ -4,8 +4,13 @@ set -e
# Environment check # Environment check
[ -z "$COVERITY_TOKEN" ] && echo "Need to set a coverity token" && exit 1 [ -z "$COVERITY_TOKEN" ] && echo "Need to set a coverity token" && exit 1
# Only run this on development # Only run this on our branches
[ "$TRAVIS_BRANCH" != "development" ] && echo "Not development; bailing." && exit 0 echo "Pull request: $TRAVIS_PULL_REQUEST | Slug: $TRAVIS_REPO_SLUG"
if [ "$TRAVIS_PULL_REQUEST" != "false" -o "$TRAVIS_REPO_SLUG" != "libgit2/libgit2" ];
then
echo "Only analyzing 'development' on the main repo."
exit 0
fi
COV_VERSION=6.6.1 COV_VERSION=6.6.1
case `uname -m` in case `uname -m` in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment