mirror of https://github.com/milvus-io/milvus.git
31 lines
1.9 KiB
Groovy
31 lines
1.9 KiB
Groovy
container('milvus-build-env') {
|
|
timeout(time: 120, unit: 'MINUTES') {
|
|
gitlabCommitStatus(name: 'Build Engine') {
|
|
dir ("milvus_engine") {
|
|
try {
|
|
checkout([$class: 'GitSCM', branches: [[name: "${SEMVER}"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'SubmoduleOption',disableSubmodules: false,parentCredentials: true,recursiveSubmodules: true,reference: '',trackingSubmodules: false]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${params.GIT_USER}", url: "git@192.168.1.105:megasearch/milvus.git", name: 'origin', refspec: "+refs/heads/${SEMVER}:refs/remotes/origin/${SEMVER}"]]])
|
|
|
|
dir ("core") {
|
|
sh "git config --global user.email \"test@zilliz.com\""
|
|
sh "git config --global user.name \"test\""
|
|
withCredentials([usernamePassword(credentialsId: "${params.JFROG_USER}", usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
|
|
sh "./build.sh -l"
|
|
sh "rm -rf cmake_build"
|
|
sh "export JFROG_ARTFACTORY_URL='${params.JFROG_ARTFACTORY_URL}' \
|
|
&& export JFROG_USER_NAME='${USERNAME}' \
|
|
&& export JFROG_PASSWORD='${PASSWORD}' \
|
|
&& export FAISS_URL='http://192.168.1.105:6060/jinhai/faiss/-/archive/branch-0.3.0/faiss-branch-0.3.0.tar.gz' \
|
|
&& ./build.sh -t ${params.BUILD_TYPE} -d /opt/milvus -j -u -c"
|
|
|
|
sh "./coverage.sh -u root -p 123456 -t \$POD_IP"
|
|
}
|
|
}
|
|
} catch (exc) {
|
|
updateGitlabCommitStatus name: 'Build Engine', state: 'failed'
|
|
throw exc
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|