From: David Gibson Date: Mon, 1 Feb 2016 11:54:32 +0000 (+1100) Subject: .travis.yml: Add -k to make check script X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=c43be6b888aa75d2a8d7fcc878534a9cad04176b .travis.yml: Add -k to make check script At the moment when Travis runs make check it will stop on the first failure. That's not particularly useful, so add a -k so that all ccanlint failures can be seen. Signed-off-by: David Gibson --- diff --git a/.travis.yml b/.travis.yml index 6574acb5..37bbd460 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,4 +12,4 @@ addons: script: - make -j2 - - make -j2 check + - make -j2 -k check