forked from aniani/vim
Problem: Unecessary workround for AppVeyor. Solution: Revert patch 7.4.990. (Christian Brabandt)
33 lines
618 B
YAML
33 lines
618 B
YAML
version: "{build}"
|
|
|
|
skip_tags: true
|
|
|
|
environment:
|
|
matrix:
|
|
- FEATURE: HUGE
|
|
- FEATURE: NORMAL
|
|
# disabled
|
|
# - FEATURE: TINY
|
|
# - FEATURE: SMALL
|
|
# - FEATURE: BIG
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
before_build:
|
|
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
|
|
|
|
build_script:
|
|
- src/appveyor.bat
|
|
|
|
test_script:
|
|
- cd src/testdir
|
|
# Testing with MSVC gvim
|
|
- path C:\Python35-x64;%PATH%
|
|
- nmake -f Make_dos.mak VIMPROG=..\gvim
|
|
- nmake -f Make_dos.mak clean
|
|
# Testing with MingW console version
|
|
- nmake -f Make_dos.mak VIMPROG=..\vim
|
|
|
|
# vim: sw=2 sts=2 et ts=8 sr
|