github/workflows: reduce timeout for BSD builds

Sometimes the VMs that these run in spin forever so it's good to have
some timeout. 30 minutes is way longer than what we need. When these are
successful, they complete in under 10 minutes (especially freebsd which
is very fast). If we're at the 15 minute mark, the VM is stuck spinning
forever so just abort.
This commit is contained in:
Dudemanguy
2025-10-02 10:56:27 -05:00
parent c946297e38
commit e821a360df

View File

@@ -427,7 +427,7 @@ jobs:
openbsd:
runs-on: ubuntu-latest # until https://github.com/actions/runner/issues/385
timeout-minutes: 30 # avoid any weirdness with the VM
timeout-minutes: 15 # avoid any weirdness with the VM
steps:
- uses: actions/checkout@v4
- name: Test in OpenBSD VM
@@ -473,7 +473,7 @@ jobs:
freebsd:
runs-on: ubuntu-latest # until https://github.com/actions/runner/issues/385
timeout-minutes: 30 # avoid any weirdness with the VM
timeout-minutes: 15 # avoid any weirdness with the VM
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD VM