aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-09-04 21:13:36 +0200
committerJustin M. Keyes <justinkz@gmail.com>2018-09-04 21:19:30 +0200
commit9fe8e3cb2f357ea38d53b5d83b3ea0ebf98be58a (patch)
tree24859b32cb3830bd2c0f06cabbcf36f8451962be
parent65e4c9afe2f9e55c79de104845a5b0524c70144b (diff)
downloadrneovim-9fe8e3cb2f357ea38d53b5d83b3ea0ebf98be58a.tar.gz
rneovim-9fe8e3cb2f357ea38d53b5d83b3ea0ebf98be58a.tar.bz2
rneovim-9fe8e3cb2f357ea38d53b5d83b3ea0ebf98be58a.zip
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
-rw-r--r--ci/build.ps12
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
}