Просмотр исходного кода

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 лет назад
Родитель
Сommit
70e49fd619
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      circle.yml
  2. 1 1
      erlang.mk

+ 1 - 1
circle.yml

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

+ 1 - 1
erlang.mk

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