forked from realaravinth/libmedium
add makefile
This commit is contained in:
parent
4f922c725c
commit
732eeb0d3a
1 changed files with 40 additions and 0 deletions
40
Makefile
Normal file
40
Makefile
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
default: ## Debug build
|
||||||
|
cargo build
|
||||||
|
|
||||||
|
clean: ## Clean all build artifacts and dependencies
|
||||||
|
@cargo clean
|
||||||
|
|
||||||
|
coverage: ## Generate HTML code coverage
|
||||||
|
cargo tarpaulin -t 1200 --out Html
|
||||||
|
|
||||||
|
dev-env: ## Download development dependencies
|
||||||
|
cargo fetch
|
||||||
|
|
||||||
|
doc: ## Prepare documentation
|
||||||
|
cargo doc --no-deps --workspace --all-features
|
||||||
|
|
||||||
|
docker: ## Build docker images
|
||||||
|
docker build -t realaravinth/pages:master -t realaravinth/pages:latest .
|
||||||
|
|
||||||
|
docker-publish: docker ## Build and publish docker images
|
||||||
|
docker push realaravinth/pages:master
|
||||||
|
docker push realaravinth/pages:latest
|
||||||
|
|
||||||
|
lint: ## Lint codebase
|
||||||
|
cargo fmt -v --all -- --emit files
|
||||||
|
cargo clippy --workspace --tests --all-features
|
||||||
|
|
||||||
|
release: ## Release build
|
||||||
|
cargo build --release
|
||||||
|
|
||||||
|
run: default ## Run debug build
|
||||||
|
cargo run
|
||||||
|
|
||||||
|
test: ## Run tests
|
||||||
|
cargo test --all-features --no-fail-fast
|
||||||
|
|
||||||
|
xml-test-coverage: ## Generate cobertura.xml test coverage
|
||||||
|
cargo tarpaulin -t 1200 --out Xml
|
||||||
|
|
||||||
|
help: ## Prints help for targets with comments
|
||||||
|
@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
Loading…
Reference in a new issue