From 78abb5376a7d6c2b8508ca37b4a7609c98ec2293 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 9 Oct 2015 12:35:28 +1030 Subject: [PATCH] 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 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2