From a479909ee8cd10b22d534e4c0855df4f8fb9807b Mon Sep 17 00:00:00 2001 From: teor Date: Wed, 27 Feb 2019 16:11:47 +1000 Subject: appveyor: skip two redundant builds to speed up CI on Windows Skip the Appveyor 32-bit Windows Server 2016 job, and 64-bit Windows Server 2012 R2 job. The remaining 2 jobs still provide coverage of 64/32-bit, and Windows Server 2016/2012 R2. Also set fast_finish, so failed jobs terminate the build immediately. Fixes bug 29601; bugfix on 0.3.5.4-alpha. --- .appveyor.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to '.appveyor.yml') diff --git a/.appveyor.yml b/.appveyor.yml index 69cbd8e2d6..da791faca6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -25,6 +25,25 @@ environment: # hardening doesn't work with mingw-w64-x86_64-gcc, because it's gcc 8 hardening: --disable-gcc-hardening +matrix: + # Don't keep building failing jobs + fast_finish: true + # Skip the 32-bit Windows Server 2016 job, and the 64-bit Windows Server + # 2012 R2 job, to speed up the build. + # The environment variables must be listed without the 'environment' tag. + exclude: + - image: Visual Studio 2017 + target: i686-w64-mingw32 + compiler_path: mingw32 + mingw_prefix: mingw-w64-i686 + hardening: + - image: Visual Studio 2015 + target: x86_64-w64-mingw32 + compiler_path: mingw64 + mingw_prefix: mingw-w64-x86_64 + # hardening doesn't work with mingw-w64-x86_64-gcc, because it's gcc 8 + hardening: --disable-gcc-hardening + install: - ps: >- Function Execute-Command ($commandPath) -- cgit v1.2.3-54-g00ecf From 78bfe731c3320437901d3801f54ade66a93bd227 Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 28 Feb 2019 07:40:15 +1000 Subject: appveyor: Do the 64-bit Windows Server 2016 job first --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.appveyor.yml') diff --git a/.appveyor.yml b/.appveyor.yml index da791faca6..9913bf3bd9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -6,10 +6,10 @@ clone_depth: 50 # But we compile using MinGW, not Visual Studio. # We use these images because they have different Windows versions. image: - # Windows Server 2012 R2 - - Visual Studio 2015 # Windows Server 2016 - Visual Studio 2017 + # Windows Server 2012 R2 + - Visual Studio 2015 environment: compiler: mingw -- cgit v1.2.3-54-g00ecf