mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25: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.
12 lines
304 B
Bash
12 lines
304 B
Bash
. "$CI_SCRIPTS/common.sh"
|
|
|
|
set_environment /opt/neovim-deps
|
|
|
|
sudo pip install cpp-coveralls
|
|
|
|
export CC=gcc
|
|
export SKIP_EXEC=1
|
|
$MAKE_CMD CMAKE_EXTRA_FLAGS="-DTRAVIS_CI_BUILD=ON -DBUSTED_OUTPUT_TYPE=color_terminal -DUSE_GCOV=ON" unittest
|
|
|
|
coveralls --encoding iso-8859-1 || echo 'coveralls upload failed.'
|