You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: ci/builders/README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -295,6 +295,7 @@ configuration.
295
295
"tests": [
296
296
{
297
297
"language": "python3",
298
+
"test_timeout_secs": 600,
298
299
"name": "Host Tests for host_debug_impeller_vulkan",
299
300
"parameters": [
300
301
"--variant",
@@ -316,6 +317,8 @@ In general any executable found in the path can be used as language. The
316
317
default is empty which means no interpreter will be used to run the script
317
318
and it is assumed the script is already an executable with the right
318
319
permissions to run in the target platform.
320
+
***test_timeout_secs** - the timeout in seconds for the step running the test. This value overrides the
321
+
default 1 hour timeout. When debugging, or if a third-party program is known to misbehave, it is recommended to add timeouts to allow LUCI services to collect logs.
319
322
***name** - the name of the step running the script.
320
323
***parameters** - flags or parameters passed to the script. Parameters
321
324
accept magic environment variables(placeholders replaced before executing
@@ -488,7 +491,8 @@ Engine test example:
488
491
"--shard-variants=host_debug"
489
492
],
490
493
"max_attempts": 1,
491
-
"script": "flutter/ci/clang_tidy.sh"
494
+
"script": "flutter/ci/clang_tidy.sh",
495
+
"test_timeout_secs": 600,
492
496
}
493
497
]
494
498
}
@@ -535,6 +539,8 @@ The property's description is as follows:
535
539
***parameters** a list of parameters passed to the script execution.
536
540
***max_attempts** an integer with the maximum number of runs in case of failure.
537
541
***script** the path relative to checkout/src/ to run.
542
+
***test_timeout_secs** - the timeout in seconds for the step running the test. This value overrides the
543
+
default 1 hour timeout. When debugging, or if a third-party program is known to misbehave, it is recommended to add timeouts to allow LUCI services to collect logs.
0 commit comments