mirror of https://github.com/milvus-io/milvus.git
Intergrate internal FAISS
parent
256897edb2
commit
844533ae57
|
@ -27,9 +27,8 @@ pipeline {
|
|||
environment {
|
||||
PROJECT_NAME = "milvus"
|
||||
LOWER_BUILD_TYPE = params.BUILD_TYPE.toLowerCase()
|
||||
SEMVER = "${BRANCH_NAME}"
|
||||
JOBNAMES = env.JOB_NAME.split('/')
|
||||
PIPELINE_NAME = "${JOBNAMES[0]}"
|
||||
SEMVER = BRANCH_NAME.substring(BRANCH_NAME.lastIndexOf("/") + 1)
|
||||
PIPELINE_NAME = env.JOB_NAME.getAt(0..(env.JOB_NAME.indexOf("/") - 1))
|
||||
}
|
||||
|
||||
stages {
|
||||
|
|
|
@ -18,9 +18,8 @@ pipeline {
|
|||
environment {
|
||||
PROJECT_NAME = "milvus"
|
||||
LOWER_BUILD_TYPE = params.BUILD_TYPE.toLowerCase()
|
||||
SEMVER = "${BRANCH_NAME}"
|
||||
JOBNAMES = env.JOB_NAME.split('/')
|
||||
PIPELINE_NAME = "${JOBNAMES[0]}"
|
||||
SEMVER = BRANCH_NAME.substring(BRANCH_NAME.lastIndexOf("/") + 1)
|
||||
PIPELINE_NAME = env.JOB_NAME.getAt(0..(env.JOB_NAME.indexOf("/") - 1))
|
||||
}
|
||||
|
||||
stages {
|
||||
|
|
Loading…
Reference in New Issue