File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 15
15
jobs :
16
16
test :
17
17
name : Build and test
18
- timeout-minutes : 40
18
+ timeout-minutes : 60
19
19
strategy :
20
20
fail-fast : false
21
21
matrix :
@@ -123,6 +123,7 @@ jobs:
123
123
clippy :
124
124
name : Clippy
125
125
runs-on : ubuntu-24.04
126
+ timeout-minutes : 10
126
127
steps :
127
128
- uses : actions/checkout@master
128
129
- name : Install Rust
@@ -138,6 +139,7 @@ jobs:
138
139
builtins :
139
140
name : Check use with compiler-builtins
140
141
runs-on : ubuntu-24.04
142
+ timeout-minutes : 10
141
143
steps :
142
144
- uses : actions/checkout@master
143
145
- name : Install Rust
@@ -194,6 +196,7 @@ jobs:
194
196
msrv :
195
197
name : Check MSRV
196
198
runs-on : ubuntu-24.04
199
+ timeout-minutes : 10
197
200
env :
198
201
RUSTFLAGS : # No need to check warnings on old MSRV, unset `-Dwarnings`
199
202
steps :
@@ -210,6 +213,7 @@ jobs:
210
213
rustfmt :
211
214
name : Rustfmt
212
215
runs-on : ubuntu-24.04
216
+ timeout-minutes : 10
213
217
steps :
214
218
- uses : actions/checkout@master
215
219
- name : Install Rust
@@ -223,6 +227,7 @@ jobs:
223
227
calculate_extensive_matrix :
224
228
name : Calculate job matrix
225
229
runs-on : ubuntu-24.04
230
+ timeout-minutes : 10
226
231
outputs :
227
232
matrix : ${{ steps.script.outputs.matrix }}
228
233
steps :
@@ -242,7 +247,7 @@ jobs:
242
247
- clippy
243
248
- calculate_extensive_matrix
244
249
runs-on : ubuntu-24.04
245
- timeout-minutes : 80
250
+ timeout-minutes : 180
246
251
strategy :
247
252
matrix :
248
253
# Use the output from `calculate_extensive_matrix` to calculate the matrix
@@ -286,6 +291,7 @@ jobs:
286
291
- rustfmt
287
292
- extensive
288
293
runs-on : ubuntu-24.04
294
+ timeout-minutes : 10
289
295
# GitHub branch protection is exceedingly silly and treats "jobs skipped because a dependency
290
296
# failed" as success. So we have to do some contortions to ensure the job fails if any of its
291
297
# dependencies fails.
You can’t perform that action at this time.
0 commit comments