Skip to content
Closed
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
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,28 +62,28 @@ matrix:
- eval "$(gimme stable)"
- gimme --list
install:
- rustup component add rustfmt
#- rustup component add rustfmt
- cargo install cargo-fuzz
script:
- RUSTFLAGS="-D warnings" cargo test --verbose
- RUSTFLAGS="-D warnings" cargo package --verbose --allow-dirty
- cargo fmt -- --check
#- cargo fmt -- --check
- cargo doc --no-deps
- make -C examples
# fuzzers
- RUSTFLAGS="-D warnings" cargo fuzz run packet_recv_client -- -runs=1
- RUSTFLAGS="-D warnings" cargo fuzz run packet_recv_server -- -runs=1
- RUSTFLAGS="-D warnings" cargo fuzz run qpack_decode -- -runs=1
- cargo fmt --manifest-path fuzz/Cargo.toml -- --check
#- cargo fmt --manifest-path fuzz/Cargo.toml -- --check
# http3_test
- RUSTFLAGS="-D warnings" cargo test --no-run --verbose --manifest-path tools/http3_test/Cargo.toml
- cargo fmt --manifest-path tools/http3_test/Cargo.toml -- --check
#- cargo fmt --manifest-path tools/http3_test/Cargo.toml -- --check
# qlog
- RUSTFLAGS="-D warnings" cargo test --verbose --manifest-path tools/qlog/Cargo.toml
- cargo fmt --manifest-path tools/qlog/Cargo.toml -- --check
#- cargo fmt --manifest-path tools/qlog/Cargo.toml -- --check
# quiche-apps
- RUSTFLAGS="-D warnings" cargo build --verbose --manifest-path tools/apps/Cargo.toml
- cargo fmt --manifest-path tools/apps/Cargo.toml -- --check
#- cargo fmt --manifest-path tools/apps/Cargo.toml -- --check
- name: "stable macOS + iOS"
language: rust
rust: stable
Expand Down