lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [lmi] master 709aa9f 3/3: Enable verbose build in CI autot


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master 709aa9f 3/3: Enable verbose build in CI autotools jobs
Date: Mon, 19 Apr 2021 08:48:36 -0400 (EDT)

branch: master
commit 709aa9fa0de640f3d08ac7a41eb17f4af52c14af
Author: Vadim Zeitlin <vadim@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>

    Enable verbose build in CI autotools jobs
    
    Show the commands fully, this can be useful for diagnostic purposes,
    even if it does add a lot of unwanted noise for the successful builds.
---
 .github/workflows/ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d77fea7..7b92a2d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -200,7 +200,7 @@ jobs:
 
       - name: Build lmi (autotools)
         if: matrix.autotools
-        run: make $coefficiency -C ${lmi_build_dir}
+        run: make V=1 $coefficiency -C ${lmi_build_dir}
 
       - name: Build lmi
         run: make $coefficiency --output-sync=recurse
@@ -281,7 +281,7 @@ jobs:
       - name: Run unit tests (autotools)
         if: matrix.autotools
         run: |
-          make $coefficiency -C ${lmi_build_dir} check || err=$?
+          make V=1 $coefficiency -C ${lmi_build_dir} check || err=$?
 
           if [ -n "$err" ]; then
             if [ -f ${lmi_build_dir}/test-suite.log ]; then



reply via email to

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