From 087b8d84e93fc1c7ed8cacbea69889255c57fe4e Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Wed, 5 Apr 2017 18:09:02 -0400 Subject: [PATCH] Skip VS2015/x86 builds AppVeyor just added support for excluding specific jobs; thhis commit cuts the number of builds down to 6 from 8 by eliminating the VS2015 x86 builds. --- .appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 0c8e193c9..2f849c4f2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,6 +14,9 @@ environment: - CONDA: 27 matrix: fast_finish: true # Stop remaining jobs after a job failure + exclude: + - image: Visual Studio 2015 + platform: x86 install: - ps: | if ($env:PLATFORM -eq "x64") { $env:CMAKE_ARCH = "x64" }