67 lines
2.0 KiB
Makefile
67 lines
2.0 KiB
Makefile
# --------------------------------------------------------------------
|
|
# dialyzer
|
|
# --------------------------------------------------------------------
|
|
|
|
DIALYZER_OPTS ?= -Werror_handling -Wunmatched_returns -Wunknown
|
|
|
|
dialyze: ELIXIR_LIBS = $(dir $(shell readlink -f `which elixir`))/../lib
|
|
dialyze: ERL_LIBS = $(APPS_DIR):$(DEPS_DIR):$(ELIXIR_LIBS)
|
|
|
|
# --------------------------------------------------------------------
|
|
# Common Test flags.
|
|
# --------------------------------------------------------------------
|
|
|
|
ifneq ($(PROJECT),rabbitmq_server_release)
|
|
CT_LOGS_DIR = $(abspath $(CURDIR)/../../logs)
|
|
endif
|
|
|
|
# We start the common_test node as a hidden Erlang node. The benefit
|
|
# is that other Erlang nodes won't try to connect to each other after
|
|
# discovering the common_test node if they are not meant to.
|
|
#
|
|
# This helps when several unrelated RabbitMQ clusters are started in
|
|
# parallel.
|
|
|
|
CT_OPTS += -hidden
|
|
|
|
# We set a low tick time to deal with distribution failures quicker.
|
|
|
|
CT_OPTS += -kernel net_ticktime 5
|
|
|
|
# Enable the following common_test hooks on GH and Concourse:
|
|
#
|
|
# cth_fail_fast
|
|
# This hook will make sure the first failure puts an end to the
|
|
# testsuites; ie. all remaining tests are skipped.
|
|
#
|
|
# cth_styledout
|
|
# This hook will change the output of common_test to something more
|
|
# concise and colored.
|
|
|
|
CT_HOOKS += cth_styledout
|
|
TEST_DEPS += cth_styledout
|
|
|
|
ifdef CONCOURSE
|
|
FAIL_FAST = 1
|
|
SKIP_AS_ERROR = 1
|
|
endif
|
|
|
|
RMQ_CI_CT_HOOKS = cth_fail_fast
|
|
ifeq ($(FAIL_FAST),1)
|
|
CT_HOOKS += $(RMQ_CI_CT_HOOKS)
|
|
TEST_DEPS += $(RMQ_CI_CT_HOOKS)
|
|
endif
|
|
|
|
dep_cth_fail_fast = git https://github.com/rabbitmq/cth_fail_fast.git master
|
|
dep_cth_styledout = git https://github.com/rabbitmq/cth_styledout.git master
|
|
|
|
CT_HOOKS_PARAM_VALUE = $(patsubst %,and %,$(CT_HOOKS))
|
|
CT_OPTS += -ct_hooks $(wordlist 2,$(words $(CT_HOOKS_PARAM_VALUE)),$(CT_HOOKS_PARAM_VALUE))
|
|
|
|
# On CI, set $RABBITMQ_CT_SKIP_AS_ERROR so that any skipped
|
|
# testsuite/testgroup/testcase is considered an error.
|
|
|
|
ifeq ($(SKIP_AS_ERROR),1)
|
|
export RABBITMQ_CT_SKIP_AS_ERROR = true
|
|
endif
|