Browse Source

Don't ignore failure when doing 'make ci'

The best way to use 'make ci' is 'make -k ci', then it
will complete its run even if a version fails, and still
exit with an error code.
Loïc Hoguin 10 years ago
parent
commit
70e49fd619
2 changed files with 2 additions and 2 deletions
  1. 1 1
      circle.yml
  2. 1 1
      erlang.mk

+ 1 - 1
circle.yml

@@ -12,5 +12,5 @@ dependencies:
 
 
 test:
 test:
   override:
   override:
-    - make ci:
+    - make -k ci:
         timeout: 3600
         timeout: 3600

+ 1 - 1
erlang.mk

@@ -5376,7 +5376,7 @@ ci_verbose = $(ci_verbose_$(V))
 
 
 define ci_target
 define ci_target
 ci-$(1): $(CI_INSTALL_DIR)/$(1)
 ci-$(1): $(CI_INSTALL_DIR)/$(1)
-	-$(ci_verbose) \
+	$(ci_verbose) \
 		PATH="$(CI_INSTALL_DIR)/$(1)/bin:$(PATH)" \
 		PATH="$(CI_INSTALL_DIR)/$(1)/bin:$(PATH)" \
 		CI_OTP_RELEASE="$(1)" \
 		CI_OTP_RELEASE="$(1)" \
 		CT_OPTS="-label $(1)" \
 		CT_OPTS="-label $(1)" \