diff .github/workflows/ci-windows.yaml @ 22373:294f27aeced4 v8.2.1735

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".
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Sep 2020 22:30:03 +0200
parents 2b6d696b063d
children 392c7bd6fa36
line wrap: on
line diff
--- a/.github/workflows/ci-windows.yaml
+++ b/.github/workflows/ci-windows.yaml
@@ -212,9 +212,9 @@ jobs:
         echo %COL_GREEN%Wait for vim tests to finish.%COL_RESET%
         cd ..\src2\testdir
         :: Wait about 10 minutes.
-        for /L %%i in (1,1,600) do (
+        for /L %%i in (1,1,60) do (
           if exist done.txt goto exitloop
-          ping -n 2 localhost > nul
+          timeout 10
         )
         set timeout=1
         :exitloop