From 427ce5cf7d7e7e73cf1aedbebdba6a798506ecb0 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 24 Aug 2019 16:02:18 -0500 Subject: [PATCH] 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 --- .cirrus.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2