cvmfs 0.4.2

CernVM-FS client implementation in Rust
Documentation
.PHONY: build release test test-unit test-integration fmt lint check clean coverage bench

build:
	cargo build

release:
	cargo build --release

test:
	cargo nextest run --workspace

test-unit:
	cargo nextest run --workspace --lib

test-integration:
	cargo nextest run --workspace --test repository_test

fmt:
	cargo +nightly fmt --all

fmt-check:
	cargo fmt --check --all

lint:
	cargo clippy --workspace --all-targets -- -D warnings

check: fmt-check lint test

clean:
	cargo clean

coverage:
	cargo llvm-cov --workspace --lib --test repository_test --lcov --output-path lcov.info --ignore-filename-regex "(main|file_system)\.rs"

bench: release
	sudo bash bench.sh

bench-docker:
	docker build -t cvmfs-bench -f Dockerfile.bench .
	docker run --rm --privileged --device /dev/fuse --cap-add SYS_ADMIN cvmfs-bench