mirror of
https://github.com/valitydev/woody_erlang.git
synced 2024-11-06 02:15:19 +00:00
649a8aba30
* Created hay handler to monitor connections * Review fixes #1 * Added hay as app dependency * Created metrics receiver for hackney * Removed filtering, added key tagging * Added metrics to tests * Removed non list key tagging option * Refactored metric updates * Moved hay to test deps * Strictened allowed metrics, enabled key mapping * Added privkey to dialyze CI step * Reordered privkey * Changed cache location * Hardcoded allowed metrics * Use tag for test deps * Collect info for all ranch listeners
56 lines
1.1 KiB
Makefile
56 lines
1.1 KiB
Makefile
REBAR := $(shell which rebar3 2>/dev/null || which ./rebar3)
|
|
SUBMODULES = build_utils
|
|
SUBTARGETS = $(patsubst %,%/.git,$(SUBMODULES))
|
|
|
|
UTILS_PATH := build_utils
|
|
# ToDo: remove unused TEMPLATES_PATH here, when the bug
|
|
# with handling of the varriable in build_utils is fixed
|
|
TEMPLATES_PATH := .
|
|
SERVICE_NAME := woody
|
|
BUILD_IMAGE_TAG := cd38c35976f3684fe7552533b6175a4c3460e88b
|
|
|
|
CALL_W_CONTAINER := all submodules rebar-update compile xref lint test dialyze clean distclean
|
|
|
|
.PHONY: $(CALL_W_CONTAINER)
|
|
|
|
all: compile
|
|
|
|
-include $(UTILS_PATH)/make_lib/utils_container.mk
|
|
|
|
$(SUBTARGETS): %/.git: %
|
|
git submodule update --init $<
|
|
touch $@
|
|
|
|
submodules: $(SUBTARGETS)
|
|
|
|
rebar-update:
|
|
$(REBAR) update
|
|
|
|
compile: submodules rebar-update
|
|
$(REBAR) compile
|
|
|
|
test: submodules
|
|
$(REBAR) eunit
|
|
$(REBAR) ct
|
|
|
|
xref: submodules
|
|
$(REBAR) xref
|
|
|
|
lint: compile
|
|
elvis rock
|
|
|
|
clean:
|
|
$(REBAR) clean
|
|
$(REBAR) as test clean
|
|
$(REBAR) as prod clean
|
|
|
|
distclean:
|
|
$(REBAR) clean -a
|
|
$(REBAR) as test clean -a
|
|
$(REBAR) as prod clean -a
|
|
rm -rfv _build _builds _cache _steps _temp
|
|
|
|
dialyze:
|
|
$(REBAR) as test dialyzer
|
|
|