From: Rob Browning Date: Sat, 24 Aug 2019 21:02:18 +0000 (-0500) Subject: cirrus-ci: specify make -j3 on all platforms X-Git-Tag: 0.29.3~5 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=bup.git;a=commitdiff_plain;h=d484e450c033b26d049c1aba365523b66b2c22d5 cirrus-ci: specify make -j3 on all platforms Based on past experience, this should help -- locally it has appeared to help our tests even with a greater concurrency level than the cpu count, and it looks like all the current test hosts have at least two cores. Signed-off-by: Rob Browning Tested-by: Rob Browning --- diff --git a/.cirrus.yml b/.cirrus.yml index bca0a3d..d2b4043 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -21,7 +21,7 @@ task: script: | set -xe dev/prep-for-freebsd-build - gmake check + gmake -j3 check # It looks like su might not work here... #pw useradd -n bup -s /bin/sh -m -w no #chown -R bup . @@ -34,4 +34,4 @@ task: script: | set -xe dev/prep-for-macos-build - make -j2 check + make -j3 check