build #1780
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build-test-lint: | |
name: FFmpeg ${{ matrix.ffmpeg_version }} - build, test and lint | |
runs-on: ubuntu-latest | |
container: jrottenberg/ffmpeg:${{ matrix.ffmpeg_version }}-ubuntu | |
strategy: | |
matrix: | |
ffmpeg_version: ['3.3', '3.4', '4.0', '4.1', '4.2', '4.3', '4.4', '5.0', '5.1', '6.0', '6.1', '7.0'] | |
fail-fast: false | |
env: | |
FEATURES: avcodec,avdevice,avfilter,avformat,postproc,swresample,swscale | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
apt update | |
apt install -y --no-install-recommends clang curl pkg-config | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Build | |
run: | | |
cargo build --features $FEATURES | |
- name: Test | |
run: | | |
cargo test --features $FEATURES | |
- name: Lint | |
run: | | |
cargo clippy --features $FEATURES -- -D warnings | |
- name: Check format | |
run: | | |
cargo fmt -- --check | |
# Added only because there is no ffmpeg7.1 docker image here yet | |
# https://github.com/jrottenberg/ffmpeg | |
# Note that postproc feature is not tested here | |
build-test-lint-7-1: | |
name: FFmpeg 7.1 - build, test and lint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
env: | |
FEATURES: avcodec,avdevice,avfilter,avformat,swresample,swscale #,postproc | |
FFMPEG_DIR: /home/runner/work/rust-ffmpeg-sys/rust-ffmpeg-sys/ffmpeg-7.1-linux-clang-default | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y --no-install-recommends clang curl pkg-config xz-utils | |
curl -L https://sourceforge.net/projects/avbuild/files/linux/ffmpeg-7.1-linux-clang-default.tar.xz/download -o ffmpeg.tar.xz | |
tar -xf ffmpeg.tar.xz | |
pwd | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Build | |
run: | | |
cargo build --features $FEATURES | |
- name: Test | |
run: | | |
cargo test --features $FEATURES | |
- name: Lint | |
run: | | |
cargo clippy --features $FEATURES -- -D warnings | |
- name: Check format | |
run: | | |
cargo fmt -- --check |