diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-09 11:04:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 11:04:02 +0100 |
commit | ad00b034261dac70f728012339bd05fc89f8e90e (patch) | |
tree | dc7cd02b18cb04ff05be8243647cc3b581176098 /ci/common/test.sh | |
parent | b2b82ff14281a4784790af288cde13984d5d5727 (diff) | |
download | rneovim-ad00b034261dac70f728012339bd05fc89f8e90e.tar.gz rneovim-ad00b034261dac70f728012339bd05fc89f8e90e.tar.bz2 rneovim-ad00b034261dac70f728012339bd05fc89f8e90e.zip |
build: remove codecov related files (#20859)
These aren't needed as we don't use codecov anymore.
Diffstat (limited to 'ci/common/test.sh')
-rw-r--r-- | ci/common/test.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh index f6e20d8f59..5ef7dc4024 100644 --- a/ci/common/test.sh +++ b/ci/common/test.sh @@ -9,12 +9,6 @@ fail() { exit 1 } -submit_coverage() { - if [ -n "${GCOV}" ]; then - "${CI_DIR}/common/submit_coverage.sh" "$@" || echo 'codecov upload failed.' - fi -} - print_core() { local app="$1" local core="$2" @@ -101,7 +95,6 @@ unittests() {( if ! ninja -C "${BUILD_DIR}" unittest; then fail 'unittests' 'Unit tests failed' fi - submit_coverage unittest check_core_dumps "$(command -v luajit)" )} @@ -110,7 +103,6 @@ functionaltests() {( if ! ninja -C "${BUILD_DIR}" "${FUNCTIONALTEST}"; then fail 'functionaltests' 'Functional tests failed' fi - submit_coverage functionaltest check_sanitizer "${LOG_DIR}" valgrind_check "${LOG_DIR}" check_core_dumps @@ -122,7 +114,6 @@ oldtests() {( reset fail 'oldtests' 'Legacy tests failed' fi - submit_coverage oldtest check_sanitizer "${LOG_DIR}" valgrind_check "${LOG_DIR}" check_core_dumps |