Skip to content

Commit 0ffc438

Browse files
committed
fix: clean up
1 parent 6c51f8e commit 0ffc438

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ai-runner-pipelines-fps-test.yaml

+8-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
model_config:
2525
- { id: noop, input_fps: 30, exp_output_fps: 28 }
2626
- { 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 }
2928
steps:
3029
- name: Checkout code
3130
uses: actions/checkout@v4
@@ -58,7 +57,13 @@ jobs:
5857
5958
- name: Clean up runner dockers
6059
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
6267
6368
- name: Run FPS test
6469
env:

0 commit comments

Comments
 (0)