Commit 710be6d1 authored by Jin Hai's avatar Jin Hai Committed by GitHub
Browse files

Merge pull request #19 from JinHai-CN/0.5.0

Add all test cases

Former-commit-id: 7662740a78e8bd2fdc0ca2ca213cdd1a0d64747f
parents a8f61ad1 fb431ba5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -69,6 +69,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