Skip to content

Update CI runner images #434

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2019, macos-13]
os: [ubuntu-24.04, windows-2025, macos-14]
rust: [stable]
release: [true, false]
experimental: [false]
features: ["", "missing-pixi-permitted"]
include:
- os: ubuntu-22.04
- os: ubuntu-24.04
rust: nightly
release: false
experimental: false
- os: windows-2019
- os: windows-2025
rust: nightly
release: false
experimental: false
- os: macos-13
- os: macos-14
rust: nightly
release: false
experimental: false
Expand All @@ -41,7 +41,10 @@ jobs:
submodules: recursive

- name: Install Rust
run: rustup toolchain install ${{ matrix.rust }} --profile minimal --component rustfmt,clippy
run: |
rustup toolchain install ${{ matrix.rust }} --profile minimal
rustup component add rustfmt --toolchain ${{ matrix.rust }}
rustup component add clippy --toolchain ${{ matrix.rust }}

- name: Check format
shell: bash
Expand Down Expand Up @@ -76,14 +79,14 @@ jobs:
# https://github.com/mozilla/mp4parse-rust/pull/210#issuecomment-597420191
- name: Install cargo-fuzz
run: rustup run ${{ matrix.rust }} cargo install cargo-fuzz
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.rust == 'nightly' }}
if: ${{ matrix.os == 'ubuntu-24.04' && matrix.rust == 'nightly' }}

- name: Build fuzzer
working-directory: mp4parse_capi
run: rustup run ${{ matrix.rust }} cargo fuzz build
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.rust == 'nightly' }}
if: ${{ matrix.os == 'ubuntu-24.04' && matrix.rust == 'nightly' }}

- name: Clippy fuzzer
working-directory: mp4parse_capi/fuzz
run: rustup run ${{ matrix.rust }} cargo clippy -- -D warnings
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.rust == 'nightly' }}
if: ${{ matrix.os == 'ubuntu-24.04' && matrix.rust == 'nightly' }}