blob: c84ecae2f383346a33ec991a6211ea4abbc0e8ca [file] [log] [blame]
Feng Xiaoe841bac2015-12-11 17:09:20 -08001# 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
17install:
18 - ps: Start-FileDownload https://googlemock.googlecode.com/files/gmock-1.7.0.zip
19 - 7z x gmock-1.7.0.zip
20 - rename gmock-1.7.0 gmock
21
22before_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
28build_script:
29 - CALL appveyor.bat
30
31skip_commits:
32 message: /.*\[skip appveyor\].*/