# HG changeset patch # User Markus Mützel # Date 1626972210 -7200 # Node ID 39780b2456a8cbcfe4a101d0260c419236ff2297 # Parent e7c10a552ecc49f9de9b503124976eba0e0fcb1b 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. diff -r e7c10a552ecc -r 39780b2456a8 .github/workflows/make.yaml --- 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.