changeset 31024:ce82378c6a47 v9.0.0847

patch 9.0.0847: CI: not totally clear what MS-Windows version is used Commit: https://github.com/vim/vim/commit/80613d64e69ccdac3dbf4eb06d55b2cf1218b819 Author: K.Takata <kentkt@csc.jp> Date: Wed Nov 9 16:12:47 2022 +0000 patch 9.0.0847: CI: not totally clear what MS-Windows version is used Problem: CI: not totally clear what MS-Windows version is used. Solution: Show the Windows version. (Ken Takata, closes https://github.com/vim/vim/issues/11524)
author Bram Moolenaar <Bram@vim.org>
date Wed, 09 Nov 2022 17:15:05 +0100
parents 698c297dd652
children 270d41abfa3d
files .github/workflows/ci.yml src/version.c
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -401,6 +401,9 @@ jobs:
         id: init
         shell: bash
         run: |
+          # Show Windows version
+          cmd /c ver
+
           git config --global core.autocrlf input
 
           if [ "${{ matrix.arch }}" = "x64" ]; then
@@ -422,9 +425,9 @@ jobs:
           echo "VCVARSALL=$(vswhere -products \* -latest -property installationPath)\\VC\\Auxiliary\\Build\\vcvarsall.bat" >> $GITHUB_ENV
           if [ "${{ matrix.features }}" != "TINY" ]; then
             if [ "${{ matrix.arch }}" = "x86" ]; then
-              choco install python2 --forcex86
+              choco install python2 --no-progress --forcex86
             else
-              choco install python2
+              choco install python2 --no-progress
             fi
           fi
           python3_dir=$(cat "/proc/$cygreg/HKEY_LOCAL_MACHINE/SOFTWARE/Python/PythonCore/${PYTHON3_VER_DOT}$pyreg/InstallPath/@")
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    847,
+/**/
     846,
 /**/
     845,