Skip to content

Commit

Permalink
Merge branch 'ci'
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Dec 6, 2024
2 parents cc6d551 + c17f313 commit 9e841c9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ on:
- cron: "25 23 * * 4"

jobs:

test:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-20.04, windows-2022, macos-12]
runs-on: [ubuntu-latest, windows-latest, macos-latest]
toolchain:
- stable
- nightly
Expand All @@ -30,8 +29,12 @@ jobs:
- name: Build and test
run: cargo test
- name: Install FFMPEG
uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg
if: runner.os != 'macOS'
uses: FedericoCarboni/setup-ffmpeg@v3
- name: Install FFMPEG (macOS)
# See https://github.com/federicocarboni/setup-ffmpeg/issues/21
if: runner.os == 'macOS'
run: brew install ffmpeg
- name: Integration tests, including roundtrip through ffmpeg and openh264
# Limit tests to bit depth 8 until ffmpeg 5.1 is available.
run: cd testbench && cargo test -- --skip mono12
Expand Down

0 comments on commit 9e841c9

Please sign in to comment.