Files
trussed-staging/Makefile
T

26 lines
746 B
Makefile
Raw Normal View History

2023-04-24 11:23:00 +02:00
# Copyright (C) Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
.PHONY: check
check:
2024-03-07 21:41:36 +01:00
RUSTLFAGS='-Dwarnings' cargo check --all-features --all-targets --workspace
RUSTLFAGS='-Dwarnings' cargo check --no-default-features
2024-03-15 11:10:42 +01:00
RUSTLFAGS='-Dwarnings' cargo check --features chunked
RUSTLFAGS='-Dwarnings' cargo check --features hkdf
2024-03-07 21:41:36 +01:00
RUSTLFAGS='-Dwarnings' cargo check --features manage
RUSTLFAGS='-Dwarnings' cargo check --features wrap-key-to-file
2023-04-24 11:23:00 +02:00
.PHONY: lint
lint:
2024-03-07 21:41:36 +01:00
cargo clippy --all-features --all-targets --workspace -- --deny warnings
cargo fmt --all -- --check
RUSTDOCFLAGS='-Dwarnings' cargo doc --no-deps --all-features --workspace
2023-04-24 11:23:00 +02:00
reuse lint
.PHONY: test
test:
2024-03-07 21:41:36 +01:00
cargo test --all-features --workspace
2023-04-24 11:23:00 +02:00
.PHONY: ci
ci: check lint test