diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-05-06 18:08:29 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-07 13:50:30 -0400 |
commit | 973baa2a06216931747404587461184d83cbdabe (patch) | |
tree | a161c0ac25769d7aa92c2e42ea8227980d2a9208 | |
parent | df4f88fe3198acea6267c6ed3b129af7d8972bf1 (diff) | |
download | rneovim-973baa2a06216931747404587461184d83cbdabe.tar.gz rneovim-973baa2a06216931747404587461184d83cbdabe.tar.bz2 rneovim-973baa2a06216931747404587461184d83cbdabe.zip |
coveralls upload should not fail the CI build
- swallow error code
-rwxr-xr-x | scripts/travis.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh index f2250d9d0d..62c4fbe98e 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -95,7 +95,7 @@ if [ "$TRAVIS_BUILD_TYPE" = "clang/asan" ]; then exit 1 fi check_and_report - coveralls --encoding iso-8859-1 + coveralls --encoding iso-8859-1 || echo 'coveralls upload failed.' $MAKE_CMD install elif [ "$TRAVIS_BUILD_TYPE" = "gcc/unittest" ]; then sudo pip install cpp-coveralls @@ -103,7 +103,7 @@ elif [ "$TRAVIS_BUILD_TYPE" = "gcc/unittest" ]; then set_environment /opt/neovim-deps export SKIP_EXEC=1 $MAKE_CMD CMAKE_EXTRA_FLAGS="-DBUSTED_OUTPUT_TYPE=TAP -DUSE_GCOV=ON" unittest - coveralls --encoding iso-8859-1 + coveralls --encoding iso-8859-1 || echo 'coveralls upload failed.' elif [ "$TRAVIS_BUILD_TYPE" = "gcc/ia32" ]; then set_environment /opt/neovim-deps/32 |