view .appveyor.yml @ 29570:bc47aeacc8d8 v9.0.0126

patch 9.0.0126: expanding file names fails in dir with more than 255 entries Commit: https://github.com/vim/vim/commit/95fca12b0e8a351ce4416417323db24c63eb940a Author: John Drouhard <john@drouhard.dev> Date: Mon Aug 1 11:38:17 2022 +0100 patch 9.0.0126: expanding file names fails in dir with more than 255 entries Problem: Expanding file names fails in directory with more than 255 entries. Solution: Use an int instead of char_u to count. (John Drouhard, closes #10818)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Aug 2022 12:45:03 +0200
parents 3b378f03f713
children ba9d53c7c509
line wrap: on
line source

version: "{build}"

skip_tags: true

environment:
  matrix:
    - FEATURE: HUGE
# disabled
#    - FEATURE: TINY
#    - FEATURE: SMALL
#    - FEATURE: NORMAL
#    - FEATURE: BIG

matrix:
  fast_finish: true

before_build:
  # Use Windows SDK 7.1 (= MSVC 2010)
  - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
  - 'set INCLUDE=%INCLUDE%C:\Program Files (x86)\Windows Kits\8.1\Include\um'

build_script:
  - ci/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 MSVC console version
  - nmake -f Make_dos.mak VIMPROG=..\vim

# vim: sw=2 sts=2 et ts=8 sr