Skip to content

ffmpeg-sys: Link EXTRALIBS for component libraries. #15

ffmpeg-sys: Link EXTRALIBS for component libraries.

ffmpeg-sys: Link EXTRALIBS for component libraries. #15

Workflow file for this run

name: Tests
on:
- push
- pull_request
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-24.04 # "noble", ffmpeg 6.1
ffmpeg_feature: "ffmpeg_6_0"
- os: ubuntu-22.04 # "jammy", ffmpeg 4.4
ffmpeg_feature: "ffmpeg_4_4"
runs-on: ${{ matrix.os }}
steps:
- name: Install ffmpeg
run: sudo apt-get -y install ffmpeg pkg-config libavutil-dev libavformat-dev libavfilter-dev libavdevice-dev
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --all --verbose --features=${{ matrix.ffmpeg_feature }}