diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-07-12 14:38:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-12 14:38:01 +0200 |
| commit | f11c2c8e95a1796d406755dc162c153d5a32750a (patch) | |
| tree | fcdce56d3fa10b176e2a67d475efcc321540899a | |
| parent | 526da2366aa2532084cff65658e5e28bd7606339 (diff) | |
| parent | 3f4b9dd463ca37c68dd6b27592e37a9287099406 (diff) | |
| download | rust-f11c2c8e95a1796d406755dc162c153d5a32750a.tar.gz rust-f11c2c8e95a1796d406755dc162c153d5a32750a.zip | |
Rollup merge of #127648 - Kobzol:ci-lower-timeout, r=pietroalbini
Lower timeout of CI jobs to 4 hours The previous value, 10 hours, is unnecessarily long, since most of our jobs finish within 2.5 hours currently. This could help us detect abnormally long CI runs. r? ``@pietroalbini``
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4cf0e5fba53..8032154a736 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: defaults: run: shell: ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }} - timeout-minutes: 600 + timeout-minutes: 240 env: CI_JOB_NAME: ${{ matrix.image }} CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse |
