changeset 29907:39780b2456a8

GitHub-CI: Add timeout when installing depencencies on macOS. * .github/workflows/make.yaml (macos): Add timeout to "install dependencies" step. It sometimes seems to hang indefinitely.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 22 Jul 2021 18:43:30 +0200
parents e7c10a552ecc
children 68fa4ac060ce
files .github/workflows/make.yaml
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Thu Jul 22 08:27:12 2021 -0700
+++ b/.github/workflows/make.yaml	Thu Jul 22 18:43:30 2021 +0200
@@ -161,6 +161,11 @@
         uses: actions/checkout@v2
 
       - name: install dependencies
+        # This step sometimes takes long and still recovers. But sometimes it
+        # seems to hang indefinitely.
+        # Use a pretty long timeout (but still less than the default 6 hours).
+        timeout-minutes: 75
+
         # It looks like "gfortran" isn't working correctly unless "gcc" is
         # re-installed.