test: add geometry datatype testcases (#44383)

master pr: https://github.com/milvus-io/milvus/pull/44646

/kind improvement

---------

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
This commit is contained in:
zhuwenxing 2025-11-04 11:03:34 +08:00 committed by GitHub
parent cc9735ff4f
commit 36a30dd34e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 3744 additions and 7 deletions

View File

@ -8,7 +8,7 @@ String cron_string = BRANCH_NAME == "master" ? "50 1 * * * " : ""
// Make timeout 4 hours so that we can run two nightly during the ci
int total_timeout_minutes = 7 * 60
def imageTag=''
def chart_version='4.1.27'
def chart_version='4.2.58'
pipeline {
triggers {
cron """${cron_timezone}

View File

@ -8,7 +8,7 @@ String cron_string = BRANCH_NAME == '2.5' ? '50 23 * * 1,4' : ''
// Make timeout 4 hours so that we can run two nightly during the ci
int total_timeout_minutes = 7 * 60
def milvus_helm_chart_version = '4.2.53'
def milvus_helm_chart_version = '4.2.58'
pipeline {
triggers {

View File

@ -4,7 +4,7 @@ int total_timeout_minutes = 60 * 5
int e2e_timeout_seconds = 120 * 60
def imageTag=''
int case_timeout_seconds = 20 * 60
def chart_version='4.2.53'
def chart_version='4.2.58'
pipeline {
options {
timestamps()

View File

@ -2,7 +2,7 @@
def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'
def milvus_helm_chart_version = '4.2.53'
def milvus_helm_chart_version = '4.2.58'
pipeline {
options {

View File

@ -1,7 +1,7 @@
@Library('jenkins-shared-library@tekton') _
def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'
def milvus_helm_chart_version = '4.2.53'
def milvus_helm_chart_version = '4.2.58'
pipeline {
options {

View File

@ -4,7 +4,7 @@ int total_timeout_minutes = 60 * 5
int e2e_timeout_seconds = 70 * 60
def imageTag=''
int case_timeout_seconds = 10 * 60
def chart_version='4.2.53'
def chart_version='4.2.58'
pipeline {
options {
timestamps()

View File

@ -1,7 +1,7 @@
@Library('jenkins-shared-library@tekton') _
def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'
def milvus_helm_chart_version = '4.2.53'
def milvus_helm_chart_version = '4.2.58'
pipeline {
options {

File diff suppressed because it is too large Load Diff

View File

@ -76,3 +76,6 @@ locust==2.25.0
# for supporting higher python version
typing_extensions==4.12.2
# for geometry
shapely==2.1.1