aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Walch <florian@fwalch.com>2014-09-10 18:11:41 +0200
committerFlorian Walch <florian@fwalch.com>2014-11-16 20:39:24 +0100
commit75335f01a065c55c3b07f849bf231a3805cb708d (patch)
tree004caaf7bc4044ebc3afe361d9f5b94efba62896
parent7465fc6ee9f94912db5d4d688de738dbe99f31fb (diff)
downloadrneovim-75335f01a065c55c3b07f849bf231a3805cb708d.tar.gz
rneovim-75335f01a065c55c3b07f849bf231a3805cb708d.tar.bz2
rneovim-75335f01a065c55c3b07f849bf231a3805cb708d.zip
Travis: Remove Coverity build.
Coverity is now handled by neovim/bot-ci.
-rw-r--r--.ci/coverity.sh16
-rw-r--r--.travis.yml4
2 files changed, 0 insertions, 20 deletions
diff --git a/.ci/coverity.sh b/.ci/coverity.sh
deleted file mode 100644
index 0edaf2e088..0000000000
--- a/.ci/coverity.sh
+++ /dev/null
@@ -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
diff --git a/.travis.yml b/.travis.yml
index 94affe7bd6..a82246986d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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`.