aboutsummaryrefslogtreecommitdiff
path: root/ci/common/submit_coverage.sh
Commit message (Collapse)AuthorAge
* build: remove codecov related files (#20859)dundargoc2023-02-09
| | | These aren't needed as we don't use codecov anymore.
* ci: disable tracing (set -x) from the shell scriptsDundar Göc2022-02-11
|
* ci: remove all code containing python2Dundar Göc2022-01-26
| | | | Also change all mentions of python 3 to just python.
* ci: submit_coverage: run luacov actually (#11169)Daniel Hahler2019-10-07
| | | Apparently this got lost with #11127 / 77a551b65.
* ci: coverage for Lua (no Windows, using luacov) (#11127)Daniel Hahler2019-10-04
|
* coverage: use "cd" with gcovr (#10594)Daniel Hahler2019-07-25
| | | | | | This makes the invocation compatible for the upcoming gcovr 4.2 release, and is the correct way of invoking it. Ref: https://github.com/gcovr/gcovr/commit/a782972#commitcomment-34420728
* CI: improve gcov handling #10404Daniel Hahler2019-07-07
| | | | | | | | | - Move __gcov_flush to process_spawn, for more reliable coverage tracking of subprocesses - Travis: use GCOV_ERROR_FILE - codecov: use "-X fix" to skip "fixing" uploaded coverage data; it should be handled by codecov's backend instead. - AppVeyor: no $PATH mangling, which breaks with the improved coverage tracking due to missing .dll in PATH.
* ci: revisit/fix coverage uploading (#10201)Daniel Hahler2019-06-25
* Add ci/common/submit_coverage.sh, used with Travis and AppVeyor * use gcovr, with coverage.xml for better branch coverage reporting, and easier processing of gcov files in general * codecov: use flags again, with `uname -s` additionally Ref: https://github.com/neovim/neovim/pull/10227#issuecomment-502923543 * remove now unused parsers.gcov config from codecov.yml