lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [lmi] master 9414edf: Use "make --keep-going" in autotools


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master 9414edf: Use "make --keep-going" in autotools CI jobs
Date: Mon, 19 Apr 2021 09:13:10 -0400 (EDT)

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

    Use "make --keep-going" in autotools CI jobs
    
    This is consistent with the non-autotools jobs and setting fail-fast to
    false in the CI workflow and allows to see all the problems at once
    instead of just the first one (at the expense of getting too much
    useless output in case of some global problem breaking compilation of
    everything, but such problems shouldn't hopefully happen very often).
---
 .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 7b92a2d..611a0ed 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 V=1 $coefficiency -C ${lmi_build_dir}
+        run: make --keep-going 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 V=1 $coefficiency -C ${lmi_build_dir} check || err=$?
+          make --keep-going 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]