mCaptcha-cache/Makefile

54 lines
1.4 KiB
Makefile
Raw Normal View History

2021-06-05 14:44:51 +03:00
VERSION = "0.1.0:alpha"
DOCKER_IMG = "mcaptcha/cache$(version)"
DOCKER_CONTAINER = "mcaptcha_cache_test"
2021-06-05 14:26:35 +03:00
default:
cargo build --release
test:
cargo test --all --all-features --no-fail-fast
./tests/test.py
docker-build:
2021-06-05 14:44:51 +03:00
#docker build -t mcaptcha/cache:0.1.1-alpha .
docker build -t $(DOCKER_IMG) .
2021-06-05 14:26:35 +03:00
docker-stop:
2021-06-05 14:44:51 +03:00
docker stop $(DOCKER_CONTAINER) || true
docker rm $(DOCKER_CONTAINER)
2021-06-05 14:26:35 +03:00
docker-run:
2021-06-05 14:44:51 +03:00
docker run --detach --name=$(DOCKER_CONTAINER) \
2021-06-05 14:26:35 +03:00
--publish 6379:6379 \
mcaptcha/cache:0.1.1-alpha
dev-env:
./scripts/setup.sh
docs:
cargo doc --no-deps --workspace --all-features
xml-test-coverage:
cargo tarpaulin -t 1200 --out Xml --all --all-features --no-fail-fast
coverage:
cargo tarpaulin -t 1200 --out Html --all --all-features --no-fail-fast
dev:
cargo build
clean:
cargo clean
help:
@echo ' run - run developer instance'
@echo ' test - run unit and integration tests'
@echo ' docker-build - build docker image'
@echo ' docker-run - run docker container'
@echo ' docker-stop - stop docker container'
@echo ' dev-env - setup dev env'
@echo ' docs - build documentation'
@echo ' clean - drop builds and environments'
@echo ' coverage - build test coverage in HTML format'
@echo ' xml-coverage - build test coverage in XML for upload to codecov'
@echo ''