mirror of https://github.com/milvus-io/milvus.git
21 lines
1.3 KiB
Groovy
21 lines
1.3 KiB
Groovy
timeout(time: 1440, unit: 'MINUTES') {
|
|
try {
|
|
dir ("milvus-helm") {
|
|
sh 'helm init --client-only --skip-refresh --stable-repo-url https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts'
|
|
sh 'helm repo update'
|
|
checkout([$class: 'GitSCM', branches: [[name: "${HELM_BRANCH}"]], userRemoteConfigs: [[url: "${HELM_URL}", name: 'origin', refspec: "+refs/heads/${HELM_BRANCH}:refs/remotes/origin/${HELM_BRANCH}"]]])
|
|
}
|
|
dir ("milvus_benchmark") {
|
|
print "Git clone url: ${TEST_URL}:${TEST_BRANCH}"
|
|
checkout([$class: 'GitSCM', branches: [[name: "${TEST_BRANCH}"]], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${params.GIT_USER}", url: "${TEST_URL}", name: 'origin', refspec: "+refs/heads/${TEST_BRANCH}:refs/remotes/origin/${TEST_BRANCH}"]]])
|
|
print "Install requirements"
|
|
sh "python3 -m pip install -r requirements.txt -i http://pypi.douban.com/simple --trusted-host pypi.douban.com"
|
|
sh "python3 -m pip install git+${TEST_LIB_URL}"
|
|
sh "python3 main.py --hostname=${params.SERVER_HOST} --image-tag=${IMAGE_TAG} --image-type=${params.IMAGE_TYPE} --suite=suites/${params.SUITE}"
|
|
}
|
|
} catch (exc) {
|
|
echo 'Deploy Test Failed !'
|
|
throw exc
|
|
}
|
|
}
|