diff options
-rw-r--r-- | ci/build.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 7e686f3464..bb4d3a9b23 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -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 } |