CI/AppVeyor: Disable gcov build for PRs

Currently the "gcov" build always fails on AppVeyor. It makes the builds
very slow, so disable it for PRs until the problem is fixed.

closes #8911
closes #8912
This commit is contained in:
Justin M. Keyes 2018-09-04 21:13:36 +02:00
parent 65e4c9afe2
commit 9fe8e3cb2f
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ $nvimCmakeVars = @{
}
# For pull requests, skip some build configurations to save time.
if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $env:CONFIGURATION -match '^(MSVC_64|MINGW_32)$') {
if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $env:CONFIGURATION -match '^(MSVC_64|MINGW_32|MINGW_64-gcov)$') {
exit 0
}