Commit fb8c3b07 authored by starlord's avatar starlord
Browse files

Merge remote-tracking branch 'source/0.5.0' into branch-0.5.0


Former-commit-id: 1383a784ce89252082a752ac91cfb6242428cbda
parents 5cf07023 93487de0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-653 - When config check fail, Milvus close without message
- MS-654 - Describe index timeout when building index
- MS-658 - Fix SQ8 Hybrid can't search
- \#9 Change default gpu_cache_capacity to 4
- MS-665 - IVF_SQ8H search crash when no GPU resource in search_resources
- \#20 - C++ sdk example get grpc error 
- \#23 - Add unittest to improve code coverage
@@ -75,6 +76,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-624 - Re-organize project directory for open-source
- MS-635 - Add compile option to support customized faiss
- MS-660 - add ubuntu_build_deps.sh
- \#18 - Add all test cases
	
# Milvus 0.4.0 (2019-09-12)

+4 −0
Original line number Diff line number Diff line
target/
.idea/
test-output/
lib/*
+0 −0

Empty file added.

+10 −0
Original line number Diff line number Diff line
def FileTransfer (sourceFiles, remoteDirectory, remoteIP, protocol = "ftp", makeEmptyDirs = true) {
    if (protocol == "ftp") {
        ftpPublisher masterNodeName: '', paramPublish: [parameterName: ''], alwaysPublishFromMaster: false, continueOnError: false, failOnError: true, publishers: [
            [configName: "${remoteIP}", transfers: [
                [asciiMode: false, cleanRemote: false, excludes: '', flatten: false, makeEmptyDirs: "${makeEmptyDirs}", noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: "${remoteDirectory}", remoteDirectorySDF: false, removePrefix: '', sourceFiles: "${sourceFiles}"]], usePromotionTimestamp: true, useWorkspaceInPromotion: false, verbose: true
                ]
            ]
    }
}
return this
+13 −0
Original line number Diff line number Diff line
try {
    def result = sh script: "helm status ${env.JOB_NAME}-${env.BUILD_NUMBER}", returnStatus: true
    if (!result) {
        sh "helm del --purge ${env.JOB_NAME}-${env.BUILD_NUMBER}"
    }
} catch (exc) {
    def result = sh script: "helm status ${env.JOB_NAME}-${env.BUILD_NUMBER}", returnStatus: true
    if (!result) {
        sh "helm del --purge ${env.JOB_NAME}-${env.BUILD_NUMBER}"
    }
    throw exc
}
Loading