From 8fc7cf4729ce123e9a9eef6c0406470e0203982f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Tue, 4 Oct 2016 00:57:00 +0200 Subject: Fix a small inconsistency when building for CI We need to clean before attempting to wildcard ebin/test. To do that, we need to invoke "make clean" separately. --- plugins/ci.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/ci.mk b/plugins/ci.mk index 8ec5b67..f2a215e 100644 --- a/plugins/ci.mk +++ b/plugins/ci.mk @@ -27,11 +27,12 @@ ci_verbose = $(ci_verbose_$(V)) define ci_target ci-$(1): $(CI_INSTALL_DIR)/$(1) + $(verbose) $(MAKE) --no-print-directory clean; $(ci_verbose) \ PATH="$(CI_INSTALL_DIR)/$(1)/bin:$(PATH)" \ CI_OTP_RELEASE="$(1)" \ CT_OPTS="-label $(1)" \ - $(MAKE) clean ci-setup tests + $(MAKE) ci-setup tests endef $(foreach otp,$(CI_OTP),$(eval $(call ci_target,$(otp)))) -- cgit v1.2.3