mirror of https://github.com/milvus-io/milvus.git
[skip ci] Wipe any etcd data when Jenkins CI cleanup stage (#6968)
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>pull/6908/head^2
parent
27726e921d
commit
4e27571451
|
@ -46,6 +46,11 @@ pipeline {
|
|||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
container('etcd') {
|
||||
script {
|
||||
sh 'ETCDCTL_API=3 etcdctl del "" --from-key=true'
|
||||
}
|
||||
}
|
||||
container('main') {
|
||||
dir ('tests/scripts') {
|
||||
script {
|
||||
|
|
|
@ -54,6 +54,11 @@ pipeline {
|
|||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
container('etcd') {
|
||||
script {
|
||||
sh 'ETCDCTL_API=3 etcdctl del "" --from-key=true'
|
||||
}
|
||||
}
|
||||
container('main') {
|
||||
dir ('tests/scripts') {
|
||||
script {
|
||||
|
|
Loading…
Reference in New Issue