From 256a483d6160f3040a7b0aca0da56ba48f6c9188 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Fri, 14 Aug 2015 17:39:48 +0200 Subject: [PATCH] Prefer to use VS2013 for compiling and testing on AppVeyor VS2013 is the version we use for building the official releases. But also test with VS2015. Signed-off-by: Sven Strickroth --- appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cf4540006..e95849a14 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,8 +8,8 @@ build_script: - cd ext\libgit2 - for %%G in (..\libgit2-*.patch) do ( type %%G | git am ) - cd ..\.. -- msbuild "src\TortoiseGit.sln" /t:"test\UnitTests" /m /verbosity:minimal /p:Configuration=Debug /p:Platform=x64 /maxcpucount /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" -- msbuild "src\TortoiseGit.sln" /t:"test\UnitTests" /m /verbosity:minimal /p:Configuration=Debug /p:Platform=Win32 /maxcpucount /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" +- msbuild "src\TortoiseGit.sln" /t:"test\UnitTests" /m /verbosity:minimal /p:Configuration=Debug /p:PlatformToolset=v120_xp /p:Platform=x64 /maxcpucount /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" +- msbuild "src\TortoiseGit.sln" /t:"test\UnitTests" /m /verbosity:minimal /p:Configuration=Debug /p:PlatformToolset=v120_xp /p:Platform=Win32 /maxcpucount /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" test_script: - bin\Debug\bin\tests.exe - bin\Debug64\bin\tests.exe @@ -18,3 +18,5 @@ test_script: - set HOME=%USERPROFILE% - bin\Debug\bin\tests.exe - bin\Debug64\bin\tests.exe +- msbuild "src\TortoiseGit.sln" /t:"test\UnitTests" /m /verbosity:minimal /p:Configuration=Debug /p:Platform=x64 /maxcpucount /p:PlatformToolset=v140_xp /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" +- bin\Debug64\bin\tests.exe -- 2.11.4.GIT