Skip to content

Commit 2e99293

Browse files
authored
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".
1 parent b02e485 commit 2e99293

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ jobs:
121121
run: |
122122
cargo run --manifest-path cli/Cargo.toml -- install --with-deps
123123
124+
- name: Install ffmpeg
125+
run: sudo apt-get update && sudo apt-get install -y ffmpeg
126+
124127
- name: Run e2e tests
125128
run: cargo test --profile ci --manifest-path cli/Cargo.toml e2e -- --ignored --test-threads=1
126129

0 commit comments

Comments
 (0)