From 8b6821625dd19c952e5487d5a96e1de80c791efb Mon Sep 17 00:00:00 2001 From: Dimitrios Siganos Date: Thu, 9 Feb 2023 11:05:17 +0000 Subject: [PATCH] Increase core test timeout to half an hour (#4115) Core test often timeout on CI, 20 minutes does not seem enough anymore. --- ci/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test.sh b/ci/test.sh index 329e96bd..083d11f9 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -2,9 +2,9 @@ build_dir=${1-${PWD}} if [[ ${TEST_USE_ROCKSDB-0} == 1 ]]; then - TIMEOUT_DEFAULT=2400 + TIMEOUT_DEFAULT=3600 else - TIMEOUT_DEFAULT=1200 + TIMEOUT_DEFAULT=1800 fi BUSYBOX_BASH=${BUSYBOX_BASH-0}