aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFrank Lichtenheld2024-01-05 15:23:39 +0100
committerGert Doering2024-01-05 15:46:24 +0100
commit55c734d7c02f9778321af550a9e0d12638fe12a0 (patch)
tree392c7b7faf546eff3c9bb7a6a4f4093287e7b1d1 /.github
parentc0f38019b4a2044c1fe873d7d33c13ce571d3386 (diff)
downloadopenvpn-55c734d7c02f9778321af550a9e0d12638fe12a0.zip
openvpn-55c734d7c02f9778321af550a9e0d12638fe12a0.tar.gz
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> Acked-by: Arne Schwabe <arne-openvpn@rfc2549.org> Message-Id: <20240105142340.25735-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg27943.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml10
1 files changed, 5 insertions, 5 deletions
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 @@ jobs:
- 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 @@ jobs:
- name: make all
run: make -j3
- name: make check
- run: make check
+ run: make check VERBOSE=1
macos:
strategy:
@@ -239,7 +239,7 @@ jobs:
- name: make all
run: make -j4
- name: make check
- run: make check
+ run: make check VERBOSE=1
msvc:
strategy:
@@ -348,7 +348,7 @@ jobs:
- name: make all
run: make -j3
- name: make check
- run: make check
+ run: make check VERBOSE=1
mbedtls3:
strategy:
@@ -399,4 +399,4 @@ jobs:
- name: make all
run: make -j3
- name: make check
- run: make check
+ run: make check VERBOSE=1