Skip to content

Restore compatibility with Rust 1.74 #885

Restore compatibility with Rust 1.74

Restore compatibility with Rust 1.74 #885

Workflow file for this run

name: Rust
on:
pull_request:
jobs:
build-stable:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
defaults:
run:
working-directory: ./safetensors
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy, llvm-tools-preview
override: true
- uses: Swatinem/rust-cache@v2
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Install cargo-llvm-cov for Ubuntu
if: matrix.os == 'ubuntu-latest'
run: cargo install cargo-llvm-cov
- name: Build
run: cargo build --all-targets --verbose
- name: Lint with Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Run Tests
run: cargo test --verbose
- name: Run No-STD Tests
run: cargo test --no-default-features --features alloc --verbose
- name: Run Audit
# RUSTSEC-2021-0145 is criterion so only within benchmarks
run: cargo audit -D warnings --ignore RUSTSEC-2021-0145
- name: Coverage report
if: matrix.os == 'ubuntu-latest'
run: cargo llvm-cov --release --lcov --output-path lcov.info
# - name: Upload to codecov.io
# if: matrix.os == 'ubuntu-latest'
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
# working-directory: ./safetensors
# fail_ci_if_error: true
build-msrv:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./safetensors
env:
MSRV: "1.74"
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ env.MSRV }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.MSRV }}
override: true
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --all-targets --verbose
- name: Run Tests
run: cargo test --verbose