appveyor.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. # Our build scripts run tests automatically; we don't want AppVeyor
  14. # to try to detect them itself.
  15. test: off
  16. install:
  17. - ps: Start-FileDownload https://googlemock.googlecode.com/files/gmock-1.7.0.zip
  18. - 7z x gmock-1.7.0.zip
  19. - rename gmock-1.7.0 gmock
  20. - ps: Start-FileDownload https://go.microsoft.com/fwlink/?LinkID=809122 -FileName dotnetsdk.exe
  21. - dotnetsdk.exe /install /quiet /norestart
  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. build_script:
  28. - CALL appveyor.bat
  29. skip_commits:
  30. message: /.*\[skip appveyor\].*/