mCaptcha/Makefile

75 lines
2 KiB
Makefile
Raw Normal View History

2021-05-03 17:54:03 +03:00
default: frontend
2021-04-08 13:19:55 +03:00
cargo build
2021-07-07 18:40:15 +03:00
clean:
2021-07-15 12:57:01 +03:00
@cargo clean
@yarn cache clean
@-rm -rf browser/pkg
@-rm ./src/cache_buster_data.json
@-rm -rf ./static/cache/bundle
@-rm -rf ./assets
2021-07-07 18:40:15 +03:00
coverage: migrate
cd browser && cargo tarpaulin -t 1200 --out Html
cargo tarpaulin -t 1200 --out Html
2021-04-08 13:19:55 +03:00
dev-env:
cargo fetch
2021-04-09 11:51:43 +03:00
yarn install
2021-04-08 13:19:55 +03:00
doc:
#yarn doc
2021-04-08 13:19:55 +03:00
cargo doc --no-deps --workspace --all-features
cd browser && cargo doc --no-deps --workspace --all-features
2021-04-09 12:33:50 +03:00
2021-07-15 12:57:01 +03:00
docker:
2021-07-07 18:40:15 +03:00
docker build -t mcaptcha/mcaptcha:master -t mcaptcha/mcaptcha:latest .
2021-07-15 12:57:01 +03:00
docker-publish:
2021-07-07 18:40:15 +03:00
docker push mcaptcha/mcaptcha:master
docker push mcaptcha/mcaptcha:latest
2021-05-03 17:54:03 +03:00
frontend:
cd browser && wasm-pack build --release
yarn install
2021-04-09 11:51:43 +03:00
yarn build
2021-04-08 13:19:55 +03:00
frontend-test:
cd browser && wasm-pack test --release --headless --chrome
cd browser && wasm-pack test --release --headless --firefox
2021-07-09 10:46:54 +03:00
cd browser && cargo test
yarn test
2021-04-08 13:19:55 +03:00
2021-07-07 18:40:15 +03:00
migrate:
cargo run --bin tests-migrate
2021-04-08 13:19:55 +03:00
2021-05-03 17:54:03 +03:00
release: frontend
2021-04-08 13:19:55 +03:00
cargo build --release
2021-07-07 18:40:15 +03:00
run: frontend
cargo run
2021-07-09 10:46:54 +03:00
test: frontend-test frontend
2021-07-09 11:27:55 +03:00
echo 'static/' && tree static || true
echo 'tree/' && tree assets || true
2021-07-09 10:46:54 +03:00
cargo test --all-features --no-fail-fast
2021-07-07 18:40:15 +03:00
xml-test-coverage: migrate
cd browser && cargo tarpaulin -t 1200 --out Xml
cargo tarpaulin -t 1200 --out Xml
2021-04-08 13:19:55 +03:00
help:
@echo ' clean - drop builds and environments'
@echo ' coverage - build test coverage in HTML format'
@echo ' dev-env - download dependencies'
2021-07-15 12:57:01 +03:00
@echo ' docker - build docker image'
@echo ' docker-publish - build and publish docker image'
@echo ' doc - build documentation'
2021-05-04 08:00:22 +03:00
@echo ' frontend - build static assets in prod mode'
@echo ' frontend-test - run frontend tests'
2021-07-07 15:50:06 +03:00
@echo ' migrate - run database migrations'
@echo ' run - run developer instance'
@echo ' test - run unit and integration tests'
2021-05-03 17:54:03 +03:00
@echo ' xml-coverage - build test coverage in XML for upload to codecov'
2021-04-08 13:19:55 +03:00
@echo ''