mirror of
https://github.com/valitydev/dominant-v2.git
synced 2024-11-06 00:35:21 +00:00
604d1b5b78
* IMP-284: Implement new DB schema * WIP * WIP * SQL Request for commiting * Implement RepositoryClient and UserOpManagement * Raw integration tests * WIP Testing * WIP Testing * Tests WIP * Insert objects rebuild * Remade sql requests and make test work * Extra tests * Extra tests * Update/Delete work * Rename everything from dmt_v2 to dmt
120 lines
2.5 KiB
Makefile
120 lines
2.5 KiB
Makefile
# HINT
|
|
# Use this file to override variables here.
|
|
# For example, to run with podman put `DOCKER=podman` there.
|
|
-include Makefile.env
|
|
|
|
# NOTE
|
|
# Variables specified in `.env` file are used to pick and setup specific
|
|
# component versions, both when building a development image and when running
|
|
# CI workflows on GH Actions. This ensures that tasks run with `wc-` prefix
|
|
# (like `wc-dialyze`) are reproducible between local machine and CI runners.
|
|
DOTENV := $(shell grep -v '^\#' .env)
|
|
|
|
# Development images
|
|
DEV_IMAGE_TAG = $(TEST_CONTAINER_NAME)-dev
|
|
DEV_IMAGE_ID = $(file < .image.dev)
|
|
|
|
DOCKER ?= docker
|
|
DOCKERCOMPOSE ?= docker compose
|
|
DOCKERCOMPOSE_W_ENV = DEV_IMAGE_TAG=$(DEV_IMAGE_TAG) $(DOCKERCOMPOSE) -f compose.yaml -f compose.tracing.yaml
|
|
REBAR ?= rebar3
|
|
TEST_CONTAINER_NAME ?= testrunner
|
|
|
|
all: compile
|
|
|
|
.PHONY: dev-image clean-dev-image wc-shell test
|
|
|
|
dev-image: .image.dev
|
|
|
|
get-submodules:
|
|
git submodule init
|
|
git submodule update
|
|
|
|
.image.dev: get-submodules Dockerfile.dev .env
|
|
env $(DOTENV) $(DOCKERCOMPOSE_W_ENV) build $(TEST_CONTAINER_NAME)
|
|
$(DOCKER) image ls -q -f "reference=$(DEV_IMAGE_ID)" | head -n1 > $@
|
|
|
|
clean-dev-image:
|
|
ifneq ($(DEV_IMAGE_ID),)
|
|
$(DOCKER) image rm -f $(DEV_IMAGE_TAG)
|
|
rm .image.dev
|
|
endif
|
|
|
|
DOCKER_WC_OPTIONS := -v $(PWD):$(PWD) --workdir $(PWD)
|
|
DOCKER_WC_EXTRA_OPTIONS ?= --rm
|
|
DOCKER_RUN = $(DOCKER) run -t $(DOCKER_WC_OPTIONS) $(DOCKER_WC_EXTRA_OPTIONS)
|
|
|
|
DOCKERCOMPOSE_RUN = $(DOCKERCOMPOSE_W_ENV) run --rm $(DOCKER_WC_OPTIONS)
|
|
|
|
# Utility tasks
|
|
|
|
wc-shell: dev-image
|
|
$(DOCKER_RUN) --interactive --tty $(DEV_IMAGE_TAG)
|
|
|
|
wc-%: dev-image
|
|
$(DOCKER_RUN) $(DEV_IMAGE_TAG) make $*
|
|
|
|
wdeps-shell: dev-image
|
|
$(DOCKERCOMPOSE_RUN) $(TEST_CONTAINER_NAME) su; \
|
|
$(DOCKERCOMPOSE_W_ENV) down
|
|
|
|
wdeps-%: dev-image
|
|
$(DOCKERCOMPOSE_RUN) -T $(TEST_CONTAINER_NAME) make $(if $(MAKE_ARGS),$(MAKE_ARGS) $*,$*); \
|
|
res=$$?; \
|
|
$(DOCKERCOMPOSE_W_ENV) down; \
|
|
exit $$res
|
|
|
|
# Submodules tasks
|
|
|
|
make_psql_migration:
|
|
make -C psql-migration/
|
|
mkdir -p bin
|
|
mkdir -p migrations
|
|
cp ./psql-migration/_build/default/bin/psql_migration ./bin
|
|
|
|
# Rebar tasks
|
|
|
|
rebar-shell:
|
|
$(REBAR) shell
|
|
|
|
compile:
|
|
$(REBAR) compile
|
|
|
|
xref:
|
|
$(REBAR) xref
|
|
|
|
lint:
|
|
$(REBAR) lint
|
|
|
|
check-format:
|
|
$(REBAR) fmt -c
|
|
|
|
dialyze:
|
|
$(REBAR) as test dialyzer
|
|
|
|
release:
|
|
$(REBAR) as prod release
|
|
|
|
eunit:
|
|
$(REBAR) eunit --cover
|
|
|
|
common-test:
|
|
$(REBAR) ct --cover
|
|
|
|
cover:
|
|
$(REBAR) covertool generate
|
|
|
|
format:
|
|
$(REBAR) fmt -w
|
|
|
|
clean:
|
|
$(REBAR) clean
|
|
|
|
distclean: clean-build-image
|
|
rm -rf _build
|
|
|
|
test: eunit common-test
|
|
|
|
cover-report:
|
|
$(REBAR) cover
|