From: David Gibson Date: Wed, 2 Nov 2016 22:35:31 +0000 (+1100) Subject: Clearer output from make check in Travis X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=03509101c400e0fe88026b07f05c193ab2333e82 Clearer output from make check in Travis This removes the parallel make (-j) option when running make check under Travis CI. This will slow down the build somewhat, but makes it easier to match errors to the modules which caused them. Signed-off-by: David Gibson --- diff --git a/.travis.yml b/.travis.yml index 0c3cd599..10f15ba1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,4 +16,4 @@ addons: script: - make config.h - make -j2 - - make -j2 -k check + - make -k check