update ci/jenkins/Jenkinsfile

This commit is contained in:
quicksilver 2019-12-18 15:54:13 +08:00
parent c045d902bb
commit c7f1c3ba21

View File

@ -107,6 +107,12 @@ pipeline {
}
}
}
post {
cleanup {
deleteDir() /* clean up our workspace */
}
}
}
stage('Publish docker images') {
@ -129,6 +135,12 @@ pipeline {
}
}
}
post {
cleanup {
deleteDir() /* clean up our workspace */
}
}
}
stage('Deploy to Development') {
@ -182,6 +194,7 @@ pipeline {
}
}
}
post {
unsuccessful {
container('milvus-test-env') {
@ -190,6 +203,9 @@ pipeline {
}
}
}
cleanup {
deleteDir() /* clean up our workspace */
}
}
}
}