From bbca3142e878de3000b3c2046b25340e42c014d6 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 29 Mar 2018 09:17:44 +0200 Subject: ci/AppVeyor: build MinGW only on master branch (#8193) Else the build takes too long. --- ci/build.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/build.ps1 b/ci/build.ps1 index df70b44458..a04ef56f81 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -20,6 +20,10 @@ function exitIfFailed() { } if ($compiler -eq 'MINGW') { + if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $compileOption -ne 'gcov') { + exit 0 + } + if ($bits -eq 32) { $arch = 'i686' } -- cgit