Skip to content

Commit d01b9a4

Browse files
authored
Increase timeout for customer_testing test step (#154339)
Related: flutter/flutter#154251 Successful runs are bumping right up against the timeout See https://ci.chromium.org/ui/p/flutter/builders/try/Linux%20customer_testing/84496/overview which succeeded in 29 minutes vs. https://ci.chromium.org/ui/p/flutter/builders/try/Linux%20customer_testing/84497/overview which failed with a timeout at 30 minutes.
1 parent f0860d8 commit d01b9a4

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.ci.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,19 +487,22 @@ targets:
487487
- .ci.yaml
488488

489489
- name: Linux customer_testing
490-
# TODO(matanlurey): https://github.com/flutter/flutter/issues/154293
490+
# TODO(Piinks): https://github.com/flutter/flutter/issues/154251
491491
bringup: true
492492
# This really just runs dev/bots/customer_testing/ci.sh,
493493
# but it does so indirectly via the flutter_drone recipe
494494
# calling the dev/bots/test.dart script.
495495
enabled_branches:
496496
- master
497497
recipe: flutter/flutter_drone
498+
# Timeout in minutes for the whole task.
498499
timeout: 60
499500
properties:
500501
shard: customer_testing
501502
tags: >
502503
["framework", "hostonly", "shard", "linux"]
504+
# Timeout in seconds for each individual step.
505+
test_timeout_secs: "2700" # 45 minutes * 60
503506

504507
- name: Linux docs_publish
505508
recipe: flutter/docs
@@ -3696,11 +3699,14 @@ targets:
36963699
enabled_branches:
36973700
- master
36983701
recipe: flutter/flutter_drone
3702+
# Timeout in minutes for the whole task.
36993703
timeout: 60
37003704
properties:
37013705
shard: customer_testing
37023706
tags: >
37033707
["framework", "hostonly", "shard", "mac"]
3708+
# Timeout in seconds for each individual step.
3709+
test_timeout_secs: "2700" # 45 minutes * 60
37043710

37053711
- name: Mac dart_plugin_registry_test
37063712
recipe: devicelab/devicelab_drone
@@ -5363,11 +5369,14 @@ targets:
53635369
enabled_branches:
53645370
- master
53655371
recipe: flutter/flutter_drone
5372+
# Timeout in minutes for the whole task.
53665373
timeout: 60
53675374
properties:
53685375
shard: customer_testing
53695376
tags: >
53705377
["framework", "hostonly", "shard", "windows"]
5378+
# Timeout in seconds for each individual step.
5379+
test_timeout_secs: "2700" # 45 minutes * 60
53715380

53725381
- name: Windows framework_tests_libraries
53735382
recipe: flutter/flutter_drone

0 commit comments

Comments
 (0)