From 9fe8e3cb2f357ea38d53b5d83b3ea0ebf98be58a Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 4 Sep 2018 21:13:36 +0200 Subject: 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 --- ci/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit