Travis: Remove Coverity build.

Coverity is now handled by neovim/bot-ci.
This commit is contained in:
Florian Walch 2014-09-10 18:11:41 +02:00
parent 7465fc6ee9
commit 75335f01a0
2 changed files with 0 additions and 20 deletions

View File

@ -1,16 +0,0 @@
. "$CI_SCRIPTS/common.sh"
# temporarily disable error checking, the coverity script exits with
# status code 1 whenever it (1) fails OR (2) is not on the correct
# branch.
set +e
curl -s https://scan.coverity.com/scripts/travisci_build_coverity_scan.sh |
COVERITY_SCAN_PROJECT_NAME="neovim/neovim" \
COVERITY_SCAN_NOTIFICATION_EMAIL="coverity@aktau.be" \
COVERITY_SCAN_BRANCH_PATTERN="coverity-scan" \
COVERITY_SCAN_BUILD_COMMAND_PREPEND="$MAKE_CMD deps" \
COVERITY_SCAN_BUILD_COMMAND="$MAKE_CMD nvim" \
bash
set -e
exit 0

View File

@ -3,15 +3,11 @@ env:
global:
- PROJECT_ROOT="$(pwd)"
- CI_SCRIPTS="$PROJECT_ROOT/.ci"
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "QEz92NyItkzQu52kCFD928jEwUYnA2OIgSyeNrp+Y3gm5rOmSZerY8hGiXyNZxocap9+qIPCapRRYU3ZYKWZPeucWMLN3aIjxAFdhugKbnmNYE1jFugb6b8N3SxiX/3206NHXlYaz0OZhh6OBAFmPUXamJC8OrWVgPNPo7wv4UQ="
matrix:
- CI_TARGET=clang-asan
- CI_TARGET=gcc
- CI_TARGET=gcc-32
- CI_TARGET=clint
- CI_TARGET=coverity
before_install:
# Adds user to a dummy group.
# That allows to test changing the group of the file by `os_fchown`.