To: vim_dev@googlegroups.com Subject: Patch 8.2.4268 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.4268 Problem: CI log output is long. Solution: Group output in sections. (Ozaki Kiichi, closes #9670) Files: .github/workflows/ci.yml *** ../vim-8.2.4267/.github/workflows/ci.yml 2022-01-26 16:20:18.067215753 +0000 --- .github/workflows/ci.yml 2022-01-31 11:37:15.463821879 +0000 *************** *** 530,545 **** call "%VCVARSALL%" ${{ matrix.vcarch }} cd src echo. ! echo %COL_GREEN%vim version:%COL_RESET% .\vim --version || exit 1 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" ! echo %COL_GREEN%Test gvim:%COL_RESET% cd testdir nmake -nologo -f Make_dos.mak VIMPROG=..\gvim || exit 1 cd .. echo %COL_GREEN%Wait for vim tests to finish.%COL_RESET% cd ..\src2\testdir --- 530,547 ---- call "%VCVARSALL%" ${{ matrix.vcarch }} cd src echo. ! echo ::group::%COL_GREEN%Vim version:%COL_RESET% .\vim --version || exit 1 + echo ::endgroup:: 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" ! echo ::group::%COL_GREEN%Test gvim:%COL_RESET% cd testdir nmake -nologo -f Make_dos.mak VIMPROG=..\gvim || exit 1 cd .. + echo ::endgroup:: echo %COL_GREEN%Wait for vim tests to finish.%COL_RESET% cd ..\src2\testdir *************** *** 552,561 **** set timeout=1 :exitloop ! echo %COL_GREEN%Test results of vim:%COL_RESET% if exist messages type messages nmake -nologo -f Make_dos.mak report VIMPROG=..\..\src\vim || exit 1 if "%timeout%"=="1" ( echo %COL_RED%Timed out.%COL_RESET% exit 1 ) --- 554,564 ---- set timeout=1 :exitloop ! echo ::group::%COL_GREEN%Test results of vim:%COL_RESET% if exist messages type messages nmake -nologo -f Make_dos.mak report VIMPROG=..\..\src\vim || exit 1 if "%timeout%"=="1" ( echo %COL_RED%Timed out.%COL_RESET% exit 1 ) + echo ::endgroup:: *** ../vim-8.2.4267/src/version.c 2022-01-31 11:29:47.613464097 +0000 --- src/version.c 2022-01-31 11:38:35.714728812 +0000 *************** *** 752,753 **** --- 752,755 ---- { /* Add new patch number below this line */ + /**/ + 4268, /**/ -- "Beware of bugs in the above code; I have only proved it correct, not tried it." -- Donald Knuth /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///