appveyor.yml 773 B

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