diff options
author | Jean-Sébastien Pédron <[email protected]> | 2025-07-23 09:40:32 +0200 |
---|---|---|
committer | Jean-Sébastien Pédron <[email protected]> | 2025-07-23 12:28:49 +0200 |
commit | faa424742b4000fdcda7a3c65909993ccc6b3a52 (patch) | |
tree | 6800ebe868ff9f9ef0e083d72a3a957d9756e29f | |
parent | e2f635b00f1aca3750056cd772ee148ba571f1ad (diff) | |
download | erlang.mk-faa424742b4000fdcda7a3c65909993ccc6b3a52.tar.gz erlang.mk-faa424742b4000fdcda7a3c65909993ccc6b3a52.tar.bz2 erlang.mk-faa424742b4000fdcda7a3c65909993ccc6b3a52.zip |
GitHub Actions: Set a timeout of 1 hour for `check-in-vm`
It looks like the VM is sometimes stuck booting, long before executing
any tests. The default timeout of 6 hours blocks other CI jobs for a
very long time. Because the VM won't boot anyway, we reduce this time to
one hour.
One hour should be long enough for a successful slow execution of the
tests.
-rw-r--r-- | .github/workflows/ci.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fec0033..62ba45d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -426,6 +426,7 @@ jobs: - name: Run tests (FreeBSD) if: matrix.vm == 'freebsd' uses: vmactions/freebsd-vm@v1 + timeout-minutes: 60 with: usesh: true copyback: false |