Skip to content

Commit

Permalink
ci: install ffmpeg using brew on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Dec 6, 2024
1 parent 30e6326 commit c17f313
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ jobs:
- name: Build and test
run: cargo test
- name: Install FFMPEG
if: runner.os != 'macOS'
uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg
- name: Install FFMPEG (macOS)
# See https://github.com/federicocarboni/setup-ffmpeg/issues/21
if: runner.os == 'macOS'
run: brew install ffmpeg
- name: Integration tests, including roundtrip through ffmpeg and openh264
# Limit tests to bit depth 8 until ffmpeg 5.1 is available.
run: cd testbench && cargo test -- --skip mono12
Expand Down

0 comments on commit c17f313

Please sign in to comment.