From e417c062c63b132fccb98bb8d68b3119b1d3bc4e Mon Sep 17 00:00:00 2001 From: FrancisANDRE Date: Wed, 23 Dec 2015 14:20:52 +0100 Subject: [PATCH] Avoid testing cmake/vs120/x64 since it takes more than 1 hour Signed-off-by: FrancisANDRE --- appveyor.yml | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a37cbae06..8e4f4ee49 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -37,20 +37,6 @@ environment: matrix: -# ------------------------------------------------------------------------------------------- -# When building with cmake, it remains one exception reported below -# Once this problem fixed, the try/catch around the cmake builder can be removed -# -# [ 1%] Generating pocomsg.h -# cmake : MC: Compiling C:/projects/poco/Foundation/src/pocomsg.mc -# At line:16 char:3 -# + cmake --build . --config $env:configuration -# + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# + CategoryInfo : NotSpecified: (MC: Compiling C.../src/pocomsg.mc:String) [], RemoteException -# + FullyQualifiedErrorId : NativeCommandError -# -# Command executed with exception: MC: Compiling C:/projects/poco/Foundation/src/pocomsg.mc -# ------------------------------------------------------------------------------------------- - builder: cmake vsver: 120 @@ -259,6 +245,22 @@ after_build: build_script: +# ------------------------------------------------------------------------------------------- +# When building with cmake, it remains one exception reported below +# Once this problem be fixed, a fix from Microsoft about mc.exe outputing informative +# message on stderr: https://connect.microsoft.com/VisualStudio/Feedback/Details/2161572 +# the try/catch around the cmake builder can be removed +# +# [ 1%] Generating pocomsg.h +# cmake : MC: Compiling C:/projects/poco/Foundation/src/pocomsg.mc +# At line:16 char:3 +# + cmake --build . --config $env:configuration +# + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# + CategoryInfo : NotSpecified: (MC: Compiling C.../src/pocomsg.mc:String) [], RemoteException +# + FullyQualifiedErrorId : NativeCommandError +# +# Command executed with exception: MC: Compiling C:/projects/poco/Foundation/src/pocomsg.mc +# ------------------------------------------------------------------------------------------- - ps: | if ($env:builder -eq "msbuild") { @@ -390,7 +392,7 @@ test_script: } } } - if ($env:builder -eq "cmake") + if ($env:builder -eq "cmake" -and $env:platform -eq "Win32") { pushd cmake-build; Write-Host -ForegroundColor Yellow $line;