1# Only test one combination: "Visual Studio 12 + Win64 + Debug + DLL". We can 2# test more combinations but AppVeyor just takes too long to finish (each 3# combination takes ~15mins). 4platform: 5 - Win64 6 7configuration: 8 - Debug 9 10environment: 11 matrix: 12 - language: cpp 13 BUILD_DLL: ON 14 15 - language: csharp 16 17# Our build scripts run tests automatically; we don't want AppVeyor 18# to try to detect them itself. 19test: off 20 21install: 22 - ps: Start-FileDownload https://googlemock.googlecode.com/files/gmock-1.7.0.zip 23 - 7z x gmock-1.7.0.zip 24 - rename gmock-1.7.0 gmock 25 - ps: Start-FileDownload https://go.microsoft.com/fwlink/?LinkID=809122 -FileName dotnetsdk.exe 26 - dotnetsdk.exe /install /quiet /norestart 27 28before_build: 29 - if %platform%==Win32 set generator=Visual Studio 12 30 - if %platform%==Win64 set generator=Visual Studio 12 Win64 31 - if %platform%==Win32 set vcplatform=Win32 32 - if %platform%==Win64 set vcplatform=x64 33 34build_script: 35 - CALL appveyor.bat 36 37skip_commits: 38 message: /.*\[skip appveyor\].*/ 39