| OLD | NEW |
| (Empty) |
| 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). | |
| 4 platform: | |
| 5 - Win64 | |
| 6 | |
| 7 configuration: | |
| 8 - Debug | |
| 9 | |
| 10 environment: | |
| 11 matrix: | |
| 12 - language: cpp | |
| 13 BUILD_DLL: ON | |
| 14 | |
| 15 - language: csharp | |
| 16 | |
| 17 install: | |
| 18 - ps: Start-FileDownload https://googlemock.googlecode.com/files/gmock-1.7.0.z
ip | |
| 19 - 7z x gmock-1.7.0.zip | |
| 20 - rename gmock-1.7.0 gmock | |
| 21 | |
| 22 before_build: | |
| 23 - if %platform%==Win32 set generator=Visual Studio 12 | |
| 24 - if %platform%==Win64 set generator=Visual Studio 12 Win64 | |
| 25 - if %platform%==Win32 set vcplatform=Win32 | |
| 26 - if %platform%==Win64 set vcplatform=x64 | |
| 27 | |
| 28 build_script: | |
| 29 - CALL appveyor.bat | |
| 30 | |
| 31 skip_commits: | |
| 32 message: /.*\[skip appveyor\].*/ | |
| OLD | NEW |