mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
9a8bc329d3
Former-commit-id: 00d4949be9536071affb449dde8ea96c4c38a281
30 lines
1.7 KiB
Groovy
30 lines
1.7 KiB
Groovy
timeout(time: 40, unit: 'MINUTES') {
|
|
try {
|
|
dir ("${PROJECT_NAME}_test") {
|
|
checkout([$class: 'GitSCM', branches: [[name: "${SEMVER}"]], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${params.GIT_USER}", url: "git@192.168.1.105:Test/milvus_test.git", name: 'origin', refspec: "+refs/heads/${SEMVER}:refs/remotes/origin/${SEMVER}"]]])
|
|
sh 'python3 -m pip install -r requirements.txt'
|
|
sh "pytest . --alluredir=test_out --ip ${env.JOB_NAME}-${env.BUILD_NUMBER}-milvus-gpu-engine.milvus-1.svc.cluster.local"
|
|
}
|
|
|
|
// mysql database backend test
|
|
load "${env.WORKSPACE}/ci/jenkinsfile/cleanup_dev.groovy"
|
|
|
|
if (!fileExists('milvus-helm')) {
|
|
dir ("milvus-helm") {
|
|
checkout([$class: 'GitSCM', branches: [[name: "${SEMVER}"]], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${params.GIT_USER}", url: "git@192.168.1.105:megasearch/milvus-helm.git", name: 'origin', refspec: "+refs/heads/${SEMVER}:refs/remotes/origin/${SEMVER}"]]])
|
|
}
|
|
}
|
|
dir ("milvus-helm") {
|
|
dir ("milvus/milvus-gpu") {
|
|
sh "helm install --wait --timeout 300 --set engine.image.tag=${DOCKER_VERSION} --set expose.type=clusterIP --name ${env.JOB_NAME}-${env.BUILD_NUMBER} -f ci/db_backend/mysql_values.yaml --namespace milvus-2 --version 0.3.1 ."
|
|
}
|
|
}
|
|
dir ("${PROJECT_NAME}_test") {
|
|
sh "pytest . --alluredir=test_out --ip ${env.JOB_NAME}-${env.BUILD_NUMBER}-milvus-gpu-engine.milvus-2.svc.cluster.local"
|
|
}
|
|
} catch (exc) {
|
|
echo 'Milvus Test Failed !'
|
|
throw exc
|
|
}
|
|
}
|