mirror of https://github.com/milvus-io/milvus.git
Add pipeline step to print/get the container logs (#2730)
* Add pipeline step to print/get the container logs Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com> * Add pipeline step to print/get the container logs Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>pull/2746/head
parent
367c72675c
commit
6996e215a2
|
@ -81,7 +81,12 @@ pipeline {
|
|||
steps {
|
||||
container("milvus-${BINARY_VERSION}-build-env") {
|
||||
script {
|
||||
load "${env.WORKSPACE}/ci/jenkins/step/build.groovy"
|
||||
try{
|
||||
load "${env.WORKSPACE}/ci/jenkins/step/build.groovy"
|
||||
} catch (Exception e) {
|
||||
containerLog "milvus-${BINARY_VERSION}-build-env"
|
||||
throw e
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue