]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
travis: message to explain why we don't continue w/ coverity stuff
authorVincent Bernat <vincent@bernat.im>
Sat, 19 Mar 2016 19:04:51 +0000 (20:04 +0100)
committerVincent Bernat <vincent@bernat.im>
Sat, 19 Mar 2016 19:04:51 +0000 (20:04 +0100)
tests/ci/run.sh

index 530bc100d4ba8348404fe6c2a353507e9c3d270c..45ca71f8a00940b8ab7d6ba17dcd500076f6db72 100755 (executable)
@@ -5,6 +5,7 @@ set -e
 # Handle coverity scan
 case "${RUN_COVERITY}","${TRAVIS_BRANCH}" in
     0,"${COVERITY_SCAN_BRANCH_PATTERN}")
+        echo "On coverity branch, don't execute a normal build"
         exit 0
         ;;
     1,"${COVERITY_SCAN_BRANCH_PATTERN}")
@@ -16,6 +17,7 @@ case "${RUN_COVERITY}","${TRAVIS_BRANCH}" in
         exit $?
         ;;
     1,*)
+        echo "On regular branch, don't run a coverity build"
         exit 0
         ;;
 esac