-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathjustfile
More file actions
17 lines (16 loc) · 643 Bytes
/
Copy pathjustfile
File metadata and controls
17 lines (16 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Matches build-test-native (plus v3)
build:
cargo build --release --bins --features v3,v3_lzma
test *args: build
cargo nextest run --release --features v3,v3_lzma {{args}}
bench:
cargo bench
lint:
cargo fmt
cargo clippy
# Matches .github/workflows/coverage.yml
coverage:
cargo llvm-cov run --bin replace-backhand --no-clean --release || true
cargo llvm-cov run --bin add-backhand --no-clean --release || true
cargo llvm-cov run --bin unsquashfs-backhand --no-clean --release || true
cargo llvm-cov nextest --workspace --codecov --output-path codecov.json --features __test_unsquashfs --release --no-clean