mirror of https://github.com/milvus-io/milvus.git
[skip e2e]Add sleep time between two deployments (#17224)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>pull/17183/head
parent
7d810ac159
commit
c134ea92d0
|
@ -109,6 +109,12 @@ jobs:
|
|||
if [ ${{ matrix.task }} == "upgrade" ]; then
|
||||
python3 action_before_upgrade.py
|
||||
fi
|
||||
- name: Milvus Idle Time
|
||||
timeout-minutes: 5
|
||||
shell: bash
|
||||
working-directory: tests/python_client/deploy
|
||||
run: |
|
||||
sleep 60s
|
||||
- name: Export logs
|
||||
if: ${{ always() }}
|
||||
shell: bash
|
||||
|
@ -271,6 +277,12 @@ jobs:
|
|||
# first test
|
||||
if [ ${{ matrix.task }} == "reinstall" ]; then python scripts/action_before_reinstall.py; fi
|
||||
if [ ${{ matrix.task }} == "upgrade" ]; then python scripts/action_before_upgrade.py; fi
|
||||
- name: Milvus Idle Time
|
||||
timeout-minutes: 5
|
||||
shell: bash
|
||||
working-directory: tests/python_client/deploy
|
||||
run: |
|
||||
sleep 60s
|
||||
- name: Export logs
|
||||
if: ${{ always() }}
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in New Issue