From 2e99293e80ceb1cc18f1013f0d50d8bc985fe63f Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Thu, 16 Apr 2026 00:20:04 -0500 Subject: [PATCH] fix(ci): install ffmpeg for e2e recording test (#1244) The `e2e_recording_inherits_viewport` test added in #1208 requires ffmpeg on the CI runner. Without it, `recording_start` fails with "ffmpeg not found". --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b45a617..9aa7477 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,6 +121,9 @@ jobs: run: | cargo run --manifest-path cli/Cargo.toml -- install --with-deps + - name: Install ffmpeg + run: sudo apt-get update && sudo apt-get install -y ffmpeg + - name: Run e2e tests run: cargo test --profile ci --manifest-path cli/Cargo.toml e2e -- --ignored --test-threads=1