Fold UdpState into AsyncUdpSocket #3404
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v1 | |
- 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@v1 | |
- 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@v1 | |
- 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 |