From: Rusty Russell Date: Fri, 9 Oct 2015 02:05:28 +0000 (+1030) Subject: Travis: do make in parallel to test if that gives slight speedup. X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=78abb5376a7d6c2b8508ca37b4a7609c98ec2293 Travis: do make in parallel to test if that gives slight speedup. Seems to. Numbers are noisy, but before was 5 min 32 sec, after this commit was 3 min 42 sec. Signed-off-by: Rusty Russell --- diff --git a/.travis.yml b/.travis.yml index ef1247ef..2a145870 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,5 @@ addons: - libjudy-dev libvorbis-dev libportaudio-dev libtalloc-dev script: - - make - - make check + - make -j2 + - make -j2 check