summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-02-21 17:49:28 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-21 17:49:28 +0000
commit83e36c86062d052fa1db48ee27709549b706b6a2 (patch)
treed3de14cda1b30d252dfc003a575c464bef62f0e9
parent592f6250017c31c8996325403e511f4502077ba5 (diff)
patch 8.2.4433: CI: cannot see interface versions for MS-Windowsv8.2.4433
Problem: CI: cannot see interface versions for MS-Windows. Solution: List the interface versions. (Ken Takata, closes #9811)
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e030df5714..7462e6db72 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -514,7 +514,11 @@ jobs:
- name: Check version
shell: cmd
- run: src\vim --version || exit 1
+ run: |
+ PATH %LUA_DIR%;C:\msys64\${{ matrix.msystem }}\bin;%PATH%;%PYTHON3_DIR%
+ src\vim --version || exit 1
+ src\vim -u NONE -i NONE --not-a-term -esNX -V1 -S ci/if_ver-1.vim -c quit
+ src\vim -u NONE -i NONE --not-a-term -esNX -V1 -S ci/if_ver-2.vim -c quit
#- name: Prepare Artifact
# shell: cmd
diff --git a/src/version.c b/src/version.c
index 203ea16e00..751ae6b7bd 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4433,
+/**/
4432,
/**/
4431,