[Openvpn-devel,S] Change in openvpn[master]: GHA: increase verbosity for make check

Message ID 64c2cb669b336602b2102ee9ac8951c26bac536f-HTML@gerrit.openvpn.net
State Superseded
Headers show
Series [Openvpn-devel,S] Change in openvpn[master]: GHA: increase verbosity for make check | expand

Commit Message

flichtenheld (Code Review) Dec. 27, 2023, 10:50 a.m. UTC
Attention is currently required from: plaisthos.

Hello plaisthos,

I'd like you to do a code review.
Please visit

    http://gerrit.openvpn.net/c/openvpn/+/485?usp=email

to review the following change.


Change subject: GHA: increase verbosity for make check
......................................................................

GHA: increase verbosity for make check

Make sure we get to see the test-suite.log on
failure.

Change-Id: Ie44a4b750605c4cc3ac1f75e1fa5ab85804ffa71
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
---
M .github/workflows/build.yaml
1 file changed, 5 insertions(+), 5 deletions(-)



  git pull ssh://gerrit.openvpn.net:29418/openvpn refs/changes/85/485/1

Patch

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 4393f5c..51100c3 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -163,7 +163,7 @@ 
       - name: make all
         run: make -j3
       - name: make check
-        run: make check
+        run: make check VERBOSE=1
 
   ubuntu-clang-asan:
     strategy:
@@ -190,7 +190,7 @@ 
       - name: make all
         run: make -j3
       - name: make check
-        run: make check
+        run: make check VERBOSE=1
 
   macos:
     strategy:
@@ -239,7 +239,7 @@ 
       - name: make all
         run: make -j4
       - name: make check
-        run: make check
+        run: make check VERBOSE=1
 
   msvc:
       strategy:
@@ -348,7 +348,7 @@ 
       - name: make all
         run: make -j3
       - name: make check
-        run: make check
+        run: make check VERBOSE=1
 
   mbedtls3:
     strategy:
@@ -399,4 +399,4 @@ 
       - name: make all
         run: make -j3
       - name: make check
-        run: make check
+        run: make check VERBOSE=1