From 89681aa5190c9d88ace67331bd3aec7ab6280406 Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Wed, 25 Aug 2021 11:33:52 +0800 Subject: [PATCH] Increase execution time for nightly tests (#7281) Signed-off-by: Binbin Lv --- build/ci/jenkins/NightlyCI.groovy | 4 ++-- tests/scripts/e2e.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/ci/jenkins/NightlyCI.groovy b/build/ci/jenkins/NightlyCI.groovy index aafceaaea..18817869c 100644 --- a/build/ci/jenkins/NightlyCI.groovy +++ b/build/ci/jenkins/NightlyCI.groovy @@ -5,8 +5,8 @@ String cron_timezone = "TZ=Asia/Shanghai" String cron_string = BRANCH_NAME == "master" ? "50 22 * * * " : "" -int total_timeout_minutes = 240 -int e2e_timeout_seconds = 3 * 60 * 60 +int total_timeout_minutes = 300 +int e2e_timeout_seconds = 4 * 60 * 60 pipeline { agent none diff --git a/tests/scripts/e2e.sh b/tests/scripts/e2e.sh index b4e7850ab..e276221b7 100755 --- a/tests/scripts/e2e.sh +++ b/tests/scripts/e2e.sh @@ -17,7 +17,7 @@ set -x MILVUS_HELM_RELEASE_NAME="${MILVUS_HELM_RELEASE_NAME:-milvus-testing}" MILVUS_CLUSTER_ENABLED="${MILVUS_CLUSTER_ENABLED:-false}" MILVUS_HELM_NAMESPACE="${MILVUS_HELM_NAMESPACE:-default}" -PARALLEL_NUM="${PARALLEL_NUM:-4}" +PARALLEL_NUM="${PARALLEL_NUM:-6}" MILVUS_CLIENT="${MILVUS_CLIENT:-pymilvus}" SOURCE="${BASH_SOURCE[0]}" -- GitLab