File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -911,7 +911,9 @@ def _run_test(job_name: str, run_command: str) -> int:
911911 if retcode != 0 :
912912 print (f"Run action failed for: [{ job_name } ] with exit code [{ retcode } ]" )
913913 if process .timeout_exceeded :
914- print (f"Job timed out: [{ job_name } ] exit code [{ retcode } ]" )
914+ print (
915+ f"Job timed out: [{ job_name } ], timeout [{ timeout } ], exit code [{ retcode } ]"
916+ )
915917 assert JobReport .exist (), "JobReport real or dummy must be present"
916918 jr = JobReport .load ()
917919 if jr .dummy :
Original file line number Diff line number Diff line change @@ -391,6 +391,7 @@ class CI:
391391 ),
392392 JobNames .INTEGRATION_TEST_TSAN : CommonJobConfigs .INTEGRATION_TEST .with_properties (
393393 required_builds = [BuildNames .PACKAGE_TSAN ],
394+ timeout = 10800 ,
394395 num_batches = 8 ,
395396 ),
396397 JobNames .INTEGRATION_TEST_AARCH64_DISTRIBUTED_PLAN : CommonJobConfigs .INTEGRATION_TEST .with_properties (
@@ -401,6 +402,7 @@ class CI:
401402 JobNames .INTEGRATION_TEST : CommonJobConfigs .INTEGRATION_TEST .with_properties (
402403 required_builds = [BuildNames .PACKAGE_RELEASE ],
403404 num_batches = 8 ,
405+ timeout = 10800 ,
404406 # release_only=True,
405407 ),
406408 JobNames .INTEGRATION_TEST_FLAKY : CommonJobConfigs .INTEGRATION_TEST .with_properties (
You can’t perform that action at this time.
0 commit comments