Intergrate internal FAISS

This commit is contained in:
quicksilver 2019-11-28 16:02:24 +08:00
parent 844533ae57
commit bb0fd64551

View File

@ -27,7 +27,7 @@ pipeline {
environment {
PROJECT_NAME = "milvus"
LOWER_BUILD_TYPE = params.BUILD_TYPE.toLowerCase()
SEMVER = BRANCH_NAME.substring(BRANCH_NAME.lastIndexOf("/") + 1)
SEMVER = BRANCH_NAME.contains("/") ? BRANCH_NAME.substring(BRANCH_NAME.lastIndexOf("/") + 1) : "${BRANCH_NAME}"
PIPELINE_NAME = env.JOB_NAME.getAt(0..(env.JOB_NAME.indexOf("/") - 1))
}