From 518eb664c42a83b066e9d5a69c1c986561862c95 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Fri, 12 Jun 2026 17:15:38 -0700 Subject: [PATCH] ci: reduce timeout for cudf_streaming C++ tests to 5m The cudf_streaming tests are lightweight and complete quickly. Reduce the timeout from 30m to 5m which still provides ample headroom while avoiding masking long hangs. References: - https://github.com/rapidsai/cudf/pull/22747#discussion_r3344137304 - https://github.com/rapidsai/cudf/pull/22747#discussion_r3350958574 Signed-off-by: Vyas Ramasubramani --- ci/test_cpp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index 3d723fe8be3f..5b17d0ba71bd 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -34,7 +34,7 @@ fi if (( SUITEERROR == 0 )); then rapids-logger "Run libcudf_streaming gtests" - timeout 30m ./ci/run_cudf_streaming_ctests.sh -j20 + timeout 5m ./ci/run_cudf_streaming_ctests.sh -j20 SUITEERROR=$? fi