comparison appveyor.yml @ 21534:69a59cc69519 v8.2.1317

patch 8.2.1317: MS-Windows tests on AppVeyor are slow Commit: https://github.com/vim/vim/commit/f9a343f8bda8fbe17ff045bef7342ffd6179e2f5 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 29 16:32:21 2020 +0200 patch 8.2.1317: MS-Windows tests on AppVeyor are slow Problem: MS-Windows tests on AppVeyor are slow. Solution: Use GitHub Actions. (Ken Takata, closes https://github.com/vim/vim/issues/6569)
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 Jul 2020 16:45:04 +0200
parents f43c0e669bd6
children
comparison
equal deleted inserted replaced
21533:65b20f7e5189 21534:69a59cc69519
3 skip_tags: true 3 skip_tags: true
4 4
5 environment: 5 environment:
6 matrix: 6 matrix:
7 - FEATURE: HUGE 7 - FEATURE: HUGE
8 - FEATURE: NORMAL
9 # disabled 8 # disabled
10 # - FEATURE: TINY 9 # - FEATURE: TINY
11 # - FEATURE: SMALL 10 # - FEATURE: SMALL
11 # - FEATURE: NORMAL
12 # - FEATURE: BIG 12 # - FEATURE: BIG
13 13
14 matrix: 14 matrix:
15 fast_finish: true 15 fast_finish: true
16 16
17 before_build: 17 before_build:
18 # Use Windows SDK 7.1 (= MSVC 2010)
18 - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release' 19 - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
19 - 'set INCLUDE=%INCLUDE%C:\Program Files (x86)\Windows Kits\8.1\Include\um' 20 - 'set INCLUDE=%INCLUDE%C:\Program Files (x86)\Windows Kits\8.1\Include\um'
20 21
21 build_script: 22 build_script:
22 - ci/appveyor.bat 23 - ci/appveyor.bat
23 24
24 test_script: 25 test_script:
25 - cd src/testdir 26 - cd src/testdir
26 # Testing with MSVC gvim 27 # Testing with MSVC gvim
27 - path C:\Python35-x64;%PATH% 28 - path C:\Python35-x64;%PATH%
28 - nmake -f Make_dos.mak POSTSCRIPT=yes VIMPROG=..\gvim 29 - nmake -f Make_dos.mak VIMPROG=..\gvim
29 - nmake -f Make_dos.mak clean 30 - nmake -f Make_dos.mak clean
30 # Testing with MingW console version 31 # Testing with MSVC console version
31 - nmake -f Make_dos.mak POSTSCRIPT=yes VIMPROG=..\vim 32 - nmake -f Make_dos.mak VIMPROG=..\vim
32 33
33 # vim: sw=2 sts=2 et ts=8 sr 34 # vim: sw=2 sts=2 et ts=8 sr