xref: /vim-8.2.3635/.appveyor.yml (revision 845b7285)
1version: "{build}"
2
3skip_tags: true
4
5environment:
6  matrix:
7    - FEATURE: HUGE
8# disabled
9#    - FEATURE: TINY
10#    - FEATURE: SMALL
11#    - FEATURE: NORMAL
12#    - FEATURE: BIG
13
14matrix:
15  fast_finish: true
16
17before_build:
18  # Use Windows SDK 7.1 (= MSVC 2010)
19  - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
20  - 'set INCLUDE=%INCLUDE%C:\Program Files (x86)\Windows Kits\8.1\Include\um'
21
22build_script:
23  - ci/appveyor.bat
24
25test_script:
26  - cd src/testdir
27    # Testing with MSVC gvim
28  - path C:\Python35-x64;%PATH%
29  - nmake -f Make_dos.mak VIMPROG=..\gvim
30  - nmake -f Make_dos.mak clean
31    # Testing with MSVC console version
32  - nmake -f Make_dos.mak VIMPROG=..\vim
33
34# vim: sw=2 sts=2 et ts=8 sr
35