summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscript/coverity.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/script/coverity.sh b/script/coverity.sh
index e75395948..945a450f1 100755
--- a/script/coverity.sh
+++ b/script/coverity.sh
@@ -4,6 +4,9 @@ set -e
# Environment check
[ -z "$COVERITY_TOKEN" ] && echo "Need to set a coverity token" && exit 1
+# Only run this on development
+[ "$TRAVIS_BRANCH" != "development" ] && echo "Not development; bailing." && exit 0
+
COV_VERSION=6.6.1
case `uname -m` in
i?86) BITS=32 ;;