Skip to content

Commit 09e4697

Browse files
thomasdhcclaude
andcommitted
fix(ci): install ffmpeg for audio/video benchmark entries
Signed-off-by: Dong Hyuk Chang <9426164+thomasdhc@users.noreply.github.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1887e13 commit 09e4697

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

benchmarking/tools/ci_benchmark_launcher.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ mkdir -p "/tmp/curator/results/${BRANCH_NAME}"
2424
# discarded with the container.
2525
apt-get update -qq && apt-get install -y --no-install-recommends lynx
2626

27+
# ffmpeg not in image (CVE removal); audio/video benchmarks need it at runtime
28+
if [[ "${ENTRY_NAME}" == audio_* ]] || [[ "${ENTRY_NAME}" == video_* ]]; then
29+
apt-get install -y --no-install-recommends ffmpeg
30+
fi
31+
2732
cd /opt/Curator
2833
uv pip install GitPython pynvml pyyaml rich
2934

0 commit comments

Comments
 (0)