summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoritchyny <itchyny@cybozu.co.jp>2023-07-22 08:56:29 +0900
committerNico Williams <nico@cryptonector.com>2023-07-21 19:49:48 -0500
commite0e1b2293ece0a15808ea548437d120d796ea3af (patch)
tree6ee324594e549d04f52c3b709feb48fb745f5866
parent3ed928954a0365828d53ac1fd6a41343b4dbff7d (diff)
Enable verbose output of make check
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--.github/workflows/oniguruma.yml4
-rw-r--r--.github/workflows/valgrind.yml2
-rw-r--r--Dockerfile2
4 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index cca857c6..e6bc388a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -102,7 +102,7 @@ jobs:
# Only run tests for amd64 matching the CI machine arch
if: ${{ matrix.arch == 'amd64' }}
run: |
- make check
+ make check VERBOSE=yes
git diff --exit-code
- name: Upload Test Logs
if: ${{ failure() }}
@@ -169,7 +169,7 @@ jobs:
# Only run tests for amd64 matching the CI machine arch
if: ${{ matrix.arch == 'amd64' }}
run: |
- make check
+ make check VERBOSE=yes
git diff --exit-code
- name: Upload Test Logs
if: ${{ failure() }}
@@ -247,7 +247,7 @@ jobs:
if: ${{ matrix.arch == 'amd64' }}
shell: msys2 {0}
run: |
- make check
+ make check VERBOSE=yes
git diff --exit-code --ignore-submodules
- name: Upload Test Logs
if: ${{ failure() }}
diff --git a/.github/workflows/oniguruma.yml b/.github/workflows/oniguruma.yml
index db78e2a7..b5b5e1cf 100644
--- a/.github/workflows/oniguruma.yml
+++ b/.github/workflows/oniguruma.yml
@@ -29,7 +29,7 @@ jobs:
- name: Test
run: |
./jq -n '"" | test("")'
- make check
+ make check VERBOSE=yes
git diff --exit-code
- name: Upload Test Logs
if: ${{ failure() }}
@@ -62,7 +62,7 @@ jobs:
- name: Test
run: |
! ./jq -n '"" | test("")'
- make check
+ make check VERBOSE=yes
git diff --exit-code
- name: Upload Test Logs
if: ${{ failure() }}
diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml
index d4ef744b..dd71d20b 100644
--- a/.github/workflows/valgrind.yml
+++ b/.github/workflows/valgrind.yml
@@ -29,7 +29,7 @@ jobs:
file ./jq
- name: Test
run: |
- make check
+ make check VERBOSE=yes
git diff --exit-code
- name: Upload Test Logs
if: ${{ failure() }}
diff --git a/Dockerfile b/Dockerfile
index 18eccbed..96c783b5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -26,7 +26,7 @@ RUN autoreconf -i \
--enable-all-static \
--prefix=/usr/local \
&& make -j$(nproc) \
- && make check \
+ && make check VERBOSE=yes \
&& make install-strip
FROM scratch