]> arthur.barton.de Git - bup.git/commitdiff
cirrus-ci: specify make -j3 on all platforms
authorRob Browning <rlb@defaultvalue.org>
Sat, 24 Aug 2019 21:02:18 +0000 (16:02 -0500)
committerRob Browning <rlb@defaultvalue.org>
Sat, 24 Aug 2019 21:02:24 +0000 (16:02 -0500)
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 <rlb@defaultvalue.org>
Tested-by: Rob Browning <rlb@defaultvalue.org>
.cirrus.yml

index bca0a3d09921558f0db5812613657726190b68fa..d2b4043735b1144db45cc5902de4285974c66d72 100644 (file)
@@ -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