aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-07-21 21:05:58 +0200
committerLoïc Hoguin <[email protected]>2015-07-21 21:07:04 +0200
commit70e49fd619f9fd2d21a9e33bb73cf73d4df4fd7c (patch)
tree3488fe7bb0666165712ad4a34638d5fef8829729
parent12a4cc5947852fc8b94c133bcbf482a4f085982e (diff)
downloadcowboy-70e49fd619f9fd2d21a9e33bb73cf73d4df4fd7c.tar.gz
cowboy-70e49fd619f9fd2d21a9e33bb73cf73d4df4fd7c.tar.bz2
cowboy-70e49fd619f9fd2d21a9e33bb73cf73d4df4fd7c.zip
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.
-rw-r--r--circle.yml2
-rw-r--r--erlang.mk2
2 files changed, 2 insertions, 2 deletions
diff --git a/circle.yml b/circle.yml
index 9192be4..82ffd4c 100644
--- a/circle.yml
+++ b/circle.yml
@@ -12,5 +12,5 @@ dependencies:
test:
override:
- - make ci:
+ - make -k ci:
timeout: 3600
diff --git a/erlang.mk b/erlang.mk
index e1270d1..8a4051a 100644
--- a/erlang.mk
+++ b/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)" \