mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-24 12:13:05 +00:00
8076ffe94d
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 1 to 2. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](https://github.com/swatinem/rust-cache/compare/v1...v2) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
92 lines
2.5 KiB
YAML
92 lines
2.5 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ['main', '0.8.x']
|
|
pull_request:
|
|
schedule:
|
|
- cron: "21 3 * * 5"
|
|
|
|
jobs:
|
|
test-freebsd:
|
|
# see https://github.com/actions/runner/issues/385
|
|
# use https://github.com/vmactions/freebsd-vm for now
|
|
name: test on freebsd
|
|
runs-on: macos-12
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: test on freebsd
|
|
uses: vmactions/freebsd-vm@v0
|
|
with:
|
|
usesh: true
|
|
mem: 4096
|
|
copyback: false
|
|
prepare: |
|
|
pkg install -y curl
|
|
curl https://sh.rustup.rs -sSf --output rustup.sh
|
|
sh rustup.sh -y --profile minimal --default-toolchain stable
|
|
echo "~~~~ rustc --version ~~~~"
|
|
$HOME/.cargo/bin/rustc --version
|
|
echo "~~~~ freebsd-version ~~~~"
|
|
freebsd-version
|
|
run: $HOME/.cargo/bin/cargo build --all-targets && $HOME/.cargo/bin/cargo test && $HOME/.cargo/bin/cargo test --manifest-path fuzz/Cargo.toml
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
rust: [stable, beta]
|
|
exclude:
|
|
- os: macos-latest
|
|
rust: beta
|
|
- os: windows-latest
|
|
rust: beta
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@master
|
|
with:
|
|
toolchain: ${{ matrix.rust }}
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo build --all-targets
|
|
- run: cargo test
|
|
- run: cargo test --manifest-path fuzz/Cargo.toml
|
|
if: ${{ matrix.rust }} == "stable"
|
|
|
|
msrv:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@1.63.0
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo check --lib --all-features -p quinn-udp -p quinn-proto -p quinn
|
|
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: rustfmt, clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo fmt --all -- --check
|
|
- run: cargo clippy --all-targets -- -D warnings
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: clippy
|
|
- name: doc
|
|
run: cargo doc --no-deps --document-private-items
|
|
env:
|
|
RUSTDOCFLAGS: -Dwarnings
|
|
- name: lint fuzz
|
|
run: |
|
|
cd fuzz
|
|
cargo clippy -- -D warnings
|
|
|
|
audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|