|
11 | 11 | container: jrottenberg/ffmpeg:${{ matrix.ffmpeg_version }}-ubuntu
|
12 | 12 | strategy:
|
13 | 13 | matrix:
|
14 |
| - ffmpeg_version: ['3.3', '3.4', '4.0', '4.1', '4.2', '4.3', '4.4', '5.0', '5.1', '6.0', '6.1'] |
| 14 | + 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'] |
15 | 15 | fail-fast: false
|
16 | 16 | env:
|
17 | 17 | FEATURES: avcodec,avdevice,avfilter,avformat,postproc,swresample,swscale
|
@@ -39,24 +39,24 @@ jobs:
|
39 | 39 | - name: Check format
|
40 | 40 | run: |
|
41 | 41 | cargo fmt -- --check
|
42 |
| - # Added only because there is no ffmpeg7.0 docker image here yet |
| 42 | + # Added only because there is no ffmpeg7.1 docker image here yet |
43 | 43 | # https://github.com/jrottenberg/ffmpeg
|
44 | 44 | # Note that postproc feature is not tested here
|
45 |
| - build-test-lint-7-0: |
46 |
| - name: FFmpeg 7.0 - build, test and lint |
| 45 | + build-test-lint-7-1: |
| 46 | + name: FFmpeg 7.1 - build, test and lint |
47 | 47 | runs-on: ubuntu-latest
|
48 | 48 | strategy:
|
49 | 49 | fail-fast: false
|
50 | 50 | env:
|
51 | 51 | FEATURES: avcodec,avdevice,avfilter,avformat,swresample,swscale #,postproc
|
52 |
| - FFMPEG_DIR: /home/runner/work/rust-ffmpeg-sys/rust-ffmpeg-sys/ffmpeg-7.0-linux-clang-default |
| 52 | + FFMPEG_DIR: /home/runner/work/rust-ffmpeg-sys/rust-ffmpeg-sys/ffmpeg-7.1-linux-clang-default |
53 | 53 | steps:
|
54 | 54 | - uses: actions/checkout@v2
|
55 | 55 | - name: Install dependencies
|
56 | 56 | run: |
|
57 | 57 | sudo apt update
|
58 | 58 | sudo apt install -y --no-install-recommends clang curl pkg-config xz-utils
|
59 |
| - curl -L https://sourceforge.net/projects/avbuild/files/linux/ffmpeg-7.0-linux-clang-default.tar.xz/download -o ffmpeg.tar.xz |
| 59 | + curl -L https://sourceforge.net/projects/avbuild/files/linux/ffmpeg-7.1-linux-clang-default.tar.xz/download -o ffmpeg.tar.xz |
60 | 60 | tar -xf ffmpeg.tar.xz
|
61 | 61 | pwd
|
62 | 62 | - name: Set up Rust
|
|
0 commit comments