diff options
author | James McCoy <jamessan@jamessan.com> | 2018-02-06 21:20:45 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2018-02-06 23:23:59 -0500 |
commit | 9fdd5d7f033941f28bd22b5a0f8c44e96e4dd3ef (patch) | |
tree | 2744319c1be9efc95a713cb5e840f2404565041a /ci/build.bat | |
parent | 6e2bb564e15f69f88f0bd73c7f6eaa9b1dc2eff3 (diff) | |
download | rneovim-9fdd5d7f033941f28bd22b5a0f8c44e96e4dd3ef.tar.gz rneovim-9fdd5d7f033941f28bd22b5a0f8c44e96e4dd3ef.tar.bz2 rneovim-9fdd5d7f033941f28bd22b5a0f8c44e96e4dd3ef.zip |
codecov: Submit test suite specific coverage
Diffstat (limited to 'ci/build.bat')
-rw-r--r-- | ci/build.bat | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/build.bat b/ci/build.bat index 9909d102a4..5c7f14ad0a 100644 --- a/ci/build.bat +++ b/ci/build.bat @@ -56,6 +56,10 @@ bin\nvim --version || goto :error :: Functional tests mingw32-make functionaltest VERBOSE=1 || goto :error +if defined USE_GCOV ( + C:\msys64\usr\bin\bash -lc "cd /c/projects/neovim; bash <(curl -s https://codecov.io/bash) -c -F functionaltest || echo 'codecov upload failed.'" +) + :: Old tests setlocal set PATH=%PATH%;C:\msys64\usr\bin @@ -63,7 +67,7 @@ mingw32-make -C "%~dp0\..\src\nvim\testdir" VERBOSE=1 endlocal if defined USE_GCOV ( - C:\msys64\usr\bin\bash -lc "cd /c/projects/neovim; bash <(curl -s https://codecov.io/bash) || echo 'codecov upload failed.'" + C:\msys64\usr\bin\bash -lc "cd /c/projects/neovim; bash <(curl -s https://codecov.io/bash) -c -F oldtest || echo 'codecov upload failed.'" ) :: Build artifacts |