summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-09-09 10:52:47 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-09 10:52:47 +0100
commit5bc13453b2dd8067597793e32c4f94aa3031054a (patch)
tree65ec7297bde790aaa686e0af77cb28d8aa50a393 /.github
parentc572ad508f53bd89aa29081fc583f17ef1f0f123 (diff)
downloadvim-git-5bc13453b2dd8067597793e32c4f94aa3031054a.tar.gz
patch 9.0.0421: MS-Windows makefiles are inconsistently namedv9.0.0421
Problem: MS-Windows makefiles are inconsistently named. Solution: Use consistent names. (Ken Takata, closes #11088)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e4f234a41..05e675de8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -563,11 +563,11 @@ jobs:
call "%VCVARSALL%" ${{ matrix.vcarch }}
echo %COL_GREEN%Start testing Vim in background.%COL_RESET%
- start cmd /c "cd src2\testdir & nmake -nologo -f Make_dos.mak VIMPROG=..\..\src\vim > nul & echo done>done.txt"
+ start cmd /c "cd src2\testdir & nmake -nologo -f Make_mvc.mak VIMPROG=..\..\src\vim > nul & echo done>done.txt"
echo %COL_GREEN%Test gVim:%COL_RESET%
cd src\testdir
- nmake -nologo -f Make_dos.mak VIMPROG=..\gvim || exit 1
+ nmake -nologo -f Make_mvc.mak VIMPROG=..\gvim || exit 1
- name: Show the result of testing Vim
shell: cmd
@@ -590,7 +590,7 @@ jobs:
echo %COL_GREEN%The result of testing Vim:%COL_RESET%
cd src2\testdir
if exist messages type messages
- nmake -nologo -f Make_dos.mak report VIMPROG=..\..\src\vim || exit 1
+ nmake -nologo -f Make_mvc.mak report VIMPROG=..\..\src\vim || exit 1
if "%timeout%"=="1" (
echo %COL_RED%Timed out.%COL_RESET%