Add CI build on GitHub Actions

This commit is contained in:
Zhiming Wang 2020-07-26 12:52:50 +08:00
parent 1d0d42d81a
commit 26b29b30b1
No known key found for this signature in database
GPG Key ID: 5B58F95EC95965D8
2 changed files with 52 additions and 0 deletions

51
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,51 @@
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:
include:
- ffmpeg_version: '3.4'
ffmpeg_version_feature:
- ffmpeg_version: '4.0'
ffmpeg_version_feature: ffmpeg4
- ffmpeg_version: '4.1'
ffmpeg_version_feature: ffmpeg41
- ffmpeg_version: '4.2'
ffmpeg_version_feature: ffmpeg42
- ffmpeg_version: '4.3'
ffmpeg_version_feature: ffmpeg43
fail-fast: false
env:
FEATURES: ${{ matrix.ffmpeg_version_feature }},codec,device,filter,format,postprocessing,software-resampling,software-scaling
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 --no-default-features --features $FEATURES
- name: Test
run: |
cargo test --no-default-features --features $FEATURES
- name: Lint
run: |
cargo clippy --no-default-features --features $FEATURES
- name: Check format
run: |
cargo fmt -- --check

View File

@ -1,4 +1,5 @@
[![crates.io](https://img.shields.io/crates/v/ffmpeg-next.svg)](https://crates.io/crates/ffmpeg-next)
[![build](https://github.com/zmwangx/rust-ffmpeg/workflows/build/badge.svg)](https://github.com/zmwangx/rust-ffmpeg/actions)
This is a fork of the abandoned [ffmpeg](https://crates.io/crates/ffmpeg) crate by [meh.](https://github.com/meh/rust-ffmpeg).