File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 24
24
model_config :
25
25
- { id: noop, input_fps: 30, exp_output_fps: 28 }
26
26
- { id: liveportrait, input_fps: 30, exp_output_fps: 28 }
27
- - { id: streamdiffusion, input_fps: 30, exp_output_fps: 25 }
28
- - { id: comfyui, input_fps: 30, exp_output_fps: 21 }
27
+ - { id: streamdiffusion, input_fps: 30, exp_output_fps: 28 }
29
28
steps :
30
29
- name : Checkout code
31
30
uses : actions/checkout@v4
58
57
59
58
- name : Clean up runner dockers
60
59
run : |
61
- docker ps -aq --filter name=live-video-to-video_${MODEL_ID}* | xargs -r docker rm -f || true
60
+ CONTAINERS=$(docker ps -aq --filter name=live-video-to-video_${MODEL_ID}*)
61
+ if [ -n "$CONTAINERS" ]; then
62
+ echo "Removing containers: $CONTAINERS"
63
+ echo "$CONTAINERS" | xargs -r docker rm -f
64
+ else
65
+ echo "No containers to remove for model ${MODEL_ID}"
66
+ fi
62
67
63
68
- name : Run FPS test
64
69
env :
You can’t perform that action at this time.
0 commit comments