.appveyor.yml 660 B

123456789101112131415161718192021222324252627282930313233
  1. version: "{build}"
  2. skip_tags: true
  3. environment:
  4. matrix:
  5. - FEATURE: HUGE
  6. # disabled
  7. # - FEATURE: TINY
  8. # - FEATURE: NORMAL
  9. # - FEATURE: BIG
  10. matrix:
  11. fast_finish: true
  12. before_build:
  13. # Use Visual Studio 2015 compiler tools (default is 2012)
  14. - '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64'
  15. build_script:
  16. - ci/appveyor.bat
  17. test_script:
  18. - cd src/testdir
  19. # Testing with MSVC gvim
  20. - path C:\Python35-x64;%PATH%
  21. - nmake -f Make_mvc.mak VIMPROG=..\gvim
  22. - nmake -f Make_mvc.mak clean
  23. # Testing with MSVC console version
  24. - nmake -f Make_mvc.mak VIMPROG=..\vim
  25. # vim: sw=2 sts=2 et ts=8 sr