ruffle/.github/workflows/test_rust.yml

191 lines
6.2 KiB
YAML
Raw Normal View History

name: Test Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
changes:
name: Paths filter
2024-05-17 06:41:05 +00:00
runs-on: ubuntu-24.04
outputs:
2023-08-26 10:58:31 +00:00
should_run: ${{ steps.filter.outputs.src }}
steps:
- uses: actions/checkout@v4
- uses: AurorNZ/paths-filter@v4
id: filter
with:
filters: |
src:
2023-08-26 10:58:31 +00:00
- '!web/package.json'
- '!web/package-lock.json'
- '!web/packages/**'
- '!**/*.md'
build:
needs: changes
2024-03-25 23:26:07 +00:00
if: needs.changes.outputs.should_run == 'true'
name: Test Rust ${{ matrix.rust_version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
2021-08-21 21:45:43 +00:00
continue-on-error: ${{ matrix.rust_version == 'nightly' || matrix.rust_version == 'beta' }}
strategy:
fail-fast: false
matrix:
rust_version: [stable]
2024-05-17 06:41:05 +00:00
os: [ubuntu-24.04, windows-latest, macos-14]
2021-08-21 14:44:24 +00:00
include:
- rust_version: nightly
2024-05-17 06:41:05 +00:00
os: ubuntu-24.04
2021-09-06 15:05:52 +00:00
- rust_version: beta
2024-05-17 06:41:05 +00:00
os: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust_version }}
- name: Install Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
2024-01-01 20:16:27 +00:00
sudo apt install -y libasound2-dev libxcb-shape0-dev libxcb-xfixes0-dev libgtk-3-dev mesa-vulkan-drivers libpango1.0-dev libudev-dev
2024-05-20 21:00:07 +00:00
# Needed after: https://github.com/rust-lang/rust/pull/124129
# See also: https://github.com/dtolnay/linkme/issues/94
# Additionally: https://lld.llvm.org/ELF/start-stop-gc
- name: Disable linker start-stop-gc
# Note: We also use `rust-lld` on Windows, see `config.toml`.
if: runner.os != 'macOS'
run: echo RUSTFLAGS=${RUSTFLAGS}\ --cfg=web_sys_unstable_apis\ -Clink-args=-znostart-stop-gc >> $GITHUB_ENV
2024-05-20 21:00:07 +00:00
- name: Cache Cargo output
uses: Swatinem/rust-cache@v2
with:
shared-key: "desktop"
2023-09-06 20:56:24 +00:00
save-if: ${{ github.ref == 'refs/heads/master' }}
- name: Install cargo nextest
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
2021-02-20 18:10:04 +00:00
- name: Run tests with image tests
2023-10-15 11:32:34 +00:00
if: runner.os != 'macOS'
run: cargo nextest run --cargo-profile ci --workspace --locked --no-fail-fast -j 4 --features imgtests,lzma,jpegxr
env:
# This is to counteract the disabling by rust-cache.
# See: https://github.com/Swatinem/rust-cache/issues/43
CARGO_INCREMENTAL: '1'
# Supposedly makes "Updating crates.io index" faster on Windows.
# See: https://github.com/rust-lang/cargo/issues/9167
CARGO_NET_GIT_FETCH_WITH_CLI: 'true'
# Workaround for: https://github.com/nextest-rs/nextest/issues/1493
# See also: https://github.com/rust-lang/rustup/issues/3825
RUSTUP_WINDOWS_PATH_ADD_BIN: '1'
XDG_RUNTIME_DIR: '' # dummy value, just to silence warnings about it missing
2021-02-20 18:10:04 +00:00
2023-10-15 11:32:34 +00:00
- name: Run tests without image tests
if: runner.os == 'macOS'
run: cargo nextest run --cargo-profile ci --workspace --locked --no-fail-fast -j 4 --features lzma,jpegxr
2023-10-15 11:32:34 +00:00
env:
XDG_RUNTIME_DIR: '' # dummy value, just to silence warnings about it missing
2021-02-20 18:10:04 +00:00
- name: Upload images
2021-08-25 19:15:02 +00:00
if: failure()
uses: actions/upload-artifact@v4
2021-02-20 18:10:04 +00:00
with:
name: swf_images_${{ matrix.rust_version }}_${{ matrix.os }}
path: |
tests*/**/*.actual*.png
tests*/**/*.difference*.png
lints:
needs: changes
2024-03-25 23:26:07 +00:00
if: needs.changes.outputs.should_run == 'true'
name: Lints with Rust ${{ matrix.rust_version }}
2024-05-17 06:41:05 +00:00
runs-on: ubuntu-24.04
continue-on-error: ${{ matrix.rust_version == 'nightly' || matrix.rust_version == 'beta' }}
strategy:
fail-fast: false
matrix:
rust_version: [stable, beta, nightly]
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust_version }}
components: rustfmt, clippy
- name: Install Linux dependencies
run: |
sudo apt-get update
2024-01-01 20:16:27 +00:00
sudo apt install -y libasound2-dev libxcb-shape0-dev libxcb-xfixes0-dev libgtk-3-dev mesa-vulkan-drivers libpango1.0-dev libudev-dev
- name: Check formatting
run: cargo fmt --all -- --check
- name: Check clippy (with tests)
# Don't fail the build for clippy on nightly, since we get a lot of false-positives
run: cargo clippy --all --all-features --tests ${{ (matrix.rust_version != 'nightly' && '-- -D warnings') || '' }}
- name: Check clippy (without tests)
# Don't fail the build for clippy on nightly, since we get a lot of false-positives
run: cargo clippy --all --all-features ${{ (matrix.rust_version != 'nightly' && '-- -D warnings') || '' }}
- name: Check documentation
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: -D warnings
2024-03-25 23:26:07 +00:00
dependencies:
needs: changes
if: needs.changes.outputs.should_run == 'true'
name: Check dependencies
2024-05-17 06:41:05 +00:00
runs-on: ubuntu-24.04
2024-03-25 23:26:07 +00:00
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Check licenses, duplicates, and advisories
uses: EmbarkStudios/cargo-deny-action@v2
2024-03-25 23:26:07 +00:00
- name: Check unused dependencies
uses: bnjbvr/cargo-machete@main
# So the previous step failing doesn't prevent this one from running.
if: always()
check-required:
needs: changes
2023-08-26 10:58:31 +00:00
if: needs.changes.outputs.should_run == 'false'
name: Test Rust ${{ matrix.rust_version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust_version: [stable]
2024-05-17 06:41:05 +00:00
os: [ubuntu-24.04, windows-latest, macos-14]
include:
- rust_version: nightly
2024-05-17 06:41:05 +00:00
os: ubuntu-24.04
- rust_version: beta
2024-05-17 06:41:05 +00:00
os: ubuntu-24.04
steps:
- name: No-op
run: echo noop