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``
This commit is contained in:
Matthias Krüger 2024-07-12 14:38:01 +02:00 committed by GitHub
commit f11c2c8e95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ jobs:
defaults: defaults:
run: run:
shell: ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }} shell: ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }}
timeout-minutes: 600 timeout-minutes: 240
env: env:
CI_JOB_NAME: ${{ matrix.image }} CI_JOB_NAME: ${{ matrix.image }}
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse