mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-29 18:38:44 +08:00
139f4e5ab5
Signed-off-by: Yellow Shine <sammy.huang@zilliz.com>
59 lines
1.9 KiB
Groovy
59 lines
1.9 KiB
Groovy
@Library('jenkins-shared-library@v0.63.0') _
|
|
|
|
def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'
|
|
def milvus_helm_chart_version = '4.2.8'
|
|
|
|
pipeline {
|
|
options {
|
|
skipDefaultCheckout true
|
|
parallelsAlwaysFailFast()
|
|
buildDiscarder logRotator(artifactDaysToKeepStr: '30')
|
|
preserveStashes(buildCount: 5)
|
|
disableConcurrentBuilds(abortPrevious: true)
|
|
}
|
|
agent {
|
|
kubernetes {
|
|
cloud '4am'
|
|
yaml pod
|
|
}
|
|
}
|
|
stages {
|
|
stage('meta') {
|
|
steps {
|
|
container('jnlp') {
|
|
script {
|
|
isPr = env.CHANGE_ID != null
|
|
gitMode = isPr ? 'merge' : 'fetch'
|
|
gitBaseRef = isPr ? "$env.CHANGE_TARGET" : "$env.BRANCH_NAME"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('build') {
|
|
steps {
|
|
container('tkn') {
|
|
script {
|
|
def job_name = tekton.cpp_ut arch: 'amd64',
|
|
isPr: isPr,
|
|
gitMode: gitMode ,
|
|
gitBaseRef: gitBaseRef,
|
|
pullRequestNumber: "$env.CHANGE_ID",
|
|
make_cmd: "make clean && make USE_ASAN=ON build-cpp-with-coverage",
|
|
test_entrypoint: "./scripts/run_cpp_codecov.sh",
|
|
codecov_files: "./lcov_output.info"
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
container('tkn') {
|
|
script {
|
|
tekton.sure_stop()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|