qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] cirrus-ci: parallelize "make check"


From: Paolo Bonzini
Subject: [PATCH] cirrus-ci: parallelize "make check"
Date: Wed, 18 Nov 2020 11:18:21 +0100

Otherwise, the tests risk failing due to timeouts.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 .cirrus.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.cirrus.yml b/.cirrus.yml
index f0209b7a3e..111e19f1bf 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -29,7 +29,7 @@ macos_task:
                    --extra-cflags='-Wno-error=deprecated-declarations'
                    || { cat config.log meson-logs/meson-log.txt; exit 1; }
     - gmake -j$(sysctl -n hw.ncpu)
-    - gmake check V=1
+    - gmake -j$(sysctl -n hw.ncpu) check V=1
 
 macos_xcode_task:
   osx_instance:
@@ -43,7 +43,7 @@ macos_xcode_task:
     - ../configure --extra-cflags='-Wno-error=deprecated-declarations' 
--enable-modules
                    --enable-werror --cc=clang || { cat config.log 
meson-logs/meson-log.txt; exit 1; }
     - gmake -j$(sysctl -n hw.ncpu)
-    - gmake check V=1
+    - gmake -j$(sysctl -n hw.ncpu) check V=1
 
 windows_msys2_task:
   timeout_in: 90m
-- 
2.28.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]