Commit d66958d8 authored by quicksilver's avatar quicksilver
Browse files

Intergrate internal FAISS

parent 5c95d560
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -27,8 +27,8 @@ pipeline {
    environment {
        PROJECT_NAME = "milvus"
        LOWER_BUILD_TYPE = params.BUILD_TYPE.toLowerCase()
        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))
        SEMVER = "${BRANCH_NAME.contains('/') ? BRANCH_NAME.substring(BRANCH_NAME.lastIndexOf('/') + 1) : '${BRANCH_NAME}'}"
        PIPELINE_NAME = "${env.JOB_NAME.contains('/') ? env.JOB_NAME.getAt(0..(env.JOB_NAME.indexOf('/') - 1)) : '${env.JOB_NAME}'}"
    }

    stages {
+2 −2
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ pipeline {
    environment {
        PROJECT_NAME = "milvus"
        LOWER_BUILD_TYPE = params.BUILD_TYPE.toLowerCase()
        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))
        SEMVER = "${BRANCH_NAME.contains('/') ? BRANCH_NAME.substring(BRANCH_NAME.lastIndexOf('/') + 1) : '${BRANCH_NAME}'}"
        PIPELINE_NAME = "${env.JOB_NAME.contains('/') ? env.JOB_NAME.getAt(0..(env.JOB_NAME.indexOf('/') - 1)) : '${env.JOB_NAME}'}"
    }

    stages {