Browse Source

Reduce sleep time in example

tags/v0.3.10-rc3
haixuantao 10 months ago
parent
commit
2ea2abec4d
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      .github/workflows/ci.yml

+ 6
- 6
.github/workflows/ci.yml View File

@@ -336,21 +336,21 @@ jobs:

dora build examples/python-dataflow/dataflow.yml
dora start examples/python-dataflow/dataflow.yml --name ci-python --detach
sleep 80
dora stop --name ci-python --grace-duration 5s
sleep 10
dora stop --name ci-python --grace-duration 10s

# Run Python Dynamic Node Example

dora start examples/python-dataflow/dataflow_dynamic.yml --name ci-python-dynamic --detach
opencv-plot --name plot
sleep 80
dora stop --name ci-python-dynamic --grace-duration 5s
sleep 10
dora stop --name ci-python-dynamic --grace-duration 10s

# Run Python Operator Example

dora start examples/python-operator-dataflow/dataflow.yml --name ci-python-operator --detach
sleep 80
dora stop --name ci-python-operator --grace-duration 5s
sleep 10
dora stop --name ci-python-operator --grace-duration 10s

dora destroy



Loading…
Cancel
Save