From 62d153653df60418e144edb06cfc4177f7233f4e Mon Sep 17 00:00:00 2001 From: Adeel Date: Sun, 29 Jan 2017 23:12:29 +0200 Subject: [PATCH] Add Win64 job to AppVeyor CI --- appveyor.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 767e6738ad..d964fade4d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,8 +7,13 @@ environment: matrix: - Compiler: msvc Config: Release + Platform: Win32 - Compiler: msvc Config: Debug + Platform: Win32 + - Compiler: msvc + Config: Release + Platform: Win64 - Compiler: mingw Build: static - Compiler: mingw @@ -38,7 +43,7 @@ build_script: if ($env:Compiler -eq "mingw") { mingw32-make -j4 sassc } else { - msbuild /m:4 /p:Configuration=$env:Config sassc\win\sassc.sln + msbuild /m:4 /p:"Configuration=$env:Config;Platform=$env:Platform" sassc\win\sassc.sln } # print the branding art @@ -84,4 +89,3 @@ test_script: } else { echo "Success!" } -