diff options
-rw-r--r-- | .ci/coverity.sh | 16 | ||||
-rw-r--r-- | .travis.yml | 4 |
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`. |