view appveyor.yml @ 12401:eb8d5c4936f1 v8.0.1080

patch 8.0.1080: memory leak for eof_chars terminal option and buffer name commit https://github.com/vim/vim/commit/74121231be50e245d18c64281fdef08e7ec1ed5b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 9 16:34:32 2017 +0200 patch 8.0.1080: memory leak for eof_chars terminal option and buffer name Problem: Memory leak for eof_chars terminal option and buffer name. Solution: Free job options. Free the buffer name
author Christian Brabandt <cb@256bit.org>
date Sat, 09 Sep 2017 16:45:04 +0200
parents eeb0b205e909
children 2ebc3df65ca2
line wrap: on
line source

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