mirror of https://github.com/milvus-io/milvus.git
Increase nightly kafka and pulsar running time (#19514)
Signed-off-by: “nico” <cheng.yuan@zilliz.com> Signed-off-by: “nico” <cheng.yuan@zilliz.com>pull/19538/head
parent
04aa55ebee
commit
2e0aa0afd7
|
@ -3,10 +3,10 @@
|
|||
// When scheduling a job that gets automatically triggered by changes,
|
||||
// you need to include a [cronjob] tag within the commit message.
|
||||
String cron_timezone = 'TZ=Asia/Shanghai'
|
||||
String cron_string = BRANCH_NAME == "master" ? "50 22,4 * * * " : ""
|
||||
String cron_string = BRANCH_NAME == "master" ? "50 22,5 * * * " : ""
|
||||
|
||||
// Make timeout 4 hours so that we can run two nightly during the ci
|
||||
int total_timeout_minutes = 6 * 60
|
||||
int total_timeout_minutes = 7 * 60
|
||||
def imageTag=''
|
||||
def chart_version='3.1.11'
|
||||
pipeline {
|
||||
|
@ -183,11 +183,13 @@ pipeline {
|
|||
if ("${MILVUS_SERVER_TYPE}" == "distributed-pulsar") {
|
||||
clusterEnabled = "true"
|
||||
tag="L0 L1 L2 ClusterOnly"
|
||||
e2e_timeout_seconds = 6 * 60 * 60
|
||||
|
||||
} else if("${MILVUS_SERVER_TYPE}" == "distributed-kafka" ) {
|
||||
clusterEnabled = "true"
|
||||
mqMode='kafka'
|
||||
tag="L0 L1 L2 ClusterOnly"
|
||||
e2e_timeout_seconds = 6 * 60 * 60
|
||||
}
|
||||
if ("${MILVUS_CLIENT}" == "pymilvus") {
|
||||
sh """
|
||||
|
|
Loading…
Reference in New Issue