• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Révision294f27aeced476a90de7a6d8652d9aa6cb8531ed (tree)
l'heure2020-09-24 05:30:03
AuteurBram Moolenaar <Bram@vim....>
CommiterBram Moolenaar

Message de Log

patch 8.2.1735: Github actions appear to timeout too soon

Commit: https://github.com/vim/vim/commit/851d108313317a062371a6750e6c6bf370a9bafa
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Sep 23 22:27:22 2020 +0200

patch 8.2.1735: Github actions appear to timeout too soon
Problem: Github actions appear to timeout too soon.
Solution: use "timeout" instead of "ping".

Change Summary

Modification

diff -r 506ab8704369 -r 294f27aeced4 .github/workflows/ci-windows.yaml
--- a/.github/workflows/ci-windows.yaml Wed Sep 23 22:00:07 2020 +0200
+++ b/.github/workflows/ci-windows.yaml Wed Sep 23 22:30:03 2020 +0200
@@ -212,9 +212,9 @@
212212 echo %COL_GREEN%Wait for vim tests to finish.%COL_RESET%
213213 cd ..\src2\testdir
214214 :: Wait about 10 minutes.
215- for /L %%i in (1,1,600) do (
215+ for /L %%i in (1,1,60) do (
216216 if exist done.txt goto exitloop
217- ping -n 2 localhost > nul
217+ timeout 10
218218 )
219219 set timeout=1
220220 :exitloop
diff -r 506ab8704369 -r 294f27aeced4 src/version.c
--- a/src/version.c Wed Sep 23 22:00:07 2020 +0200
+++ b/src/version.c Wed Sep 23 22:30:03 2020 +0200
@@ -751,6 +751,8 @@
751751 static int included_patches[] =
752752 { /* Add new patch number below this line */
753753 /**/
754+ 1735,
755+/**/
754756 1734,
755757 /**/
756758 1733,
Afficher sur ancien navigateur de dépôt.