mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
6483a198e4
To simplify modification/inclusion of continuous integration targets, this removes travis.sh which contains a big if statement in favor of multiple scripts under the new '.ci' directory.
17 lines
530 B
Bash
17 lines
530 B
Bash
. "$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
|