diff mbox series

[v1,21/22] cirrus: use V=1 when running tests on FreeBSD and macOS

Message ID 20201007160038.26953-22-alex.bennee@linaro.org
State New
Headers show
Series testing and plugin fixes with gitdm updates (pre PR) | expand

Commit Message

Alex Bennée Oct. 7, 2020, 4 p.m. UTC
From: Paolo Bonzini <pbonzini@redhat.com>

Using "V=1" makes it easier to identify hanging tests, especially
since they are run with -j1.  It is already used on Windows builds,
do the same for FreeBSD and macOS.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20201007140103.711142-1-pbonzini@redhat.com>
---
 .cirrus.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Ed Maste Oct. 8, 2020, 1:31 a.m. UTC | #1
On Wed, 7 Oct 2020 at 12:09, Alex Bennée <alex.bennee@linaro.org> wrote:
>

> From: Paolo Bonzini <pbonzini@redhat.com>

>

> Using "V=1" makes it easier to identify hanging tests, especially

> since they are run with -j1.  It is already used on Windows builds,

> do the same for FreeBSD and macOS.

>

> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

> Message-Id: <20201007140103.711142-1-pbonzini@redhat.com>

Reviewed-by: Ed Maste <emaste@FreeBSD.org>
diff mbox series

Patch

diff --git a/.cirrus.yml b/.cirrus.yml
index 301a64f104..99d118239c 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -15,7 +15,7 @@  freebsd_12_task:
     - cd build
     - ../configure --enable-werror || { cat config.log; exit 1; }
     - gmake -j$(sysctl -n hw.ncpu)
-    - gmake -j$(sysctl -n hw.ncpu) check
+    - gmake -j$(sysctl -n hw.ncpu) check V=1
 
 macos_task:
   osx_instance:
@@ -29,7 +29,7 @@  macos_task:
                    --extra-cflags='-Wno-error=deprecated-declarations'
                    || { cat config.log; exit 1; }
     - gmake -j$(sysctl -n hw.ncpu)
-    - gmake check
+    - gmake check V=1
 
 macos_xcode_task:
   osx_instance:
@@ -43,7 +43,7 @@  macos_xcode_task:
     - ../configure --extra-cflags='-Wno-error=deprecated-declarations'
                    --enable-werror --cc=clang || { cat config.log; exit 1; }
     - gmake -j$(sysctl -n hw.ncpu)
-    - gmake check
+    - gmake check V=1
 
 windows_msys2_task:
   timeout_in: 90m