mirror of https://github.com/milvus-io/milvus.git
[skip e2e]Add timeout for some stage (#17454)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>pull/17458/head
parent
6d078ebe7a
commit
24a1a013a2
|
@ -185,6 +185,9 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage ('Run first test') {
|
||||
options {
|
||||
timeout(time: 20, unit: 'MINUTES') // timeout on this stage
|
||||
}
|
||||
steps {
|
||||
container('main') {
|
||||
dir ('tests/python_client/deploy/scripts') {
|
||||
|
@ -293,6 +296,9 @@ pipeline {
|
|||
}
|
||||
|
||||
stage ('Run Second Test') {
|
||||
options {
|
||||
timeout(time: 20, unit: 'MINUTES') // timeout on this stage
|
||||
}
|
||||
steps {
|
||||
container('main') {
|
||||
dir ('tests/python_client/deploy/scripts') {
|
||||
|
|
Loading…
Reference in New Issue