Skip to content

Commit

Permalink
ci: ffmpeg for macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Dec 6, 2024
1 parent 9db864b commit 93af083
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,22 @@ jobs:
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
# Temporary fix for 'pip install imageio-ffmpeg'
# not including the FFMPEG binary on Apple Silicon macs
# This step can be removed when issue is fixed in imageio-ffmpeg
# https://github.com/imageio/imageio-ffmpeg/issues/71
- name: Setup FFmpeg
if: runner.name == 'macos-latest'
run: |
brew update
brew install ffmpeg
# Temporary fix for 'pip install imageio-ffmpeg'
# not including the FFMPEG binary on Apple Silicon macs
# This step can be removed when issue is fixed in imageio-ffmpeg
# https://github.com/imageio/imageio-ffmpeg/issues/71
- name: Setup FFmpeg
if: runner.os == 'macOS'
uses: AnimMouse/setup-ffmpeg@v1
- name: Setup xvfb (Linux)
if: runner.os == 'Linux'
run: |
Expand Down

0 comments on commit 93af083

Please sign in to comment.