# HG changeset patch # User Bram Moolenaar # Date 1645466404 -3600 # Node ID 52a5f4a8eef5195140c7ef1eb6744d8ca425e494 # Parent 5abd9c1d4f577625dddd41aa24d29c2e9ba07ea6 patch 8.2.4433: CI: cannot see interface versions for MS-Windows Commit: https://github.com/vim/vim/commit/83e36c86062d052fa1db48ee27709549b706b6a2 Author: K.Takata Date: Mon Feb 21 17:49:28 2022 +0000 patch 8.2.4433: CI: cannot see interface versions for MS-Windows Problem: CI: cannot see interface versions for MS-Windows. Solution: List the interface versions. (Ken Takata, closes https://github.com/vim/vim/issues/9811) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- 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 --- 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,