diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cca857c64d..e6bc388a34 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 db78e2a75b..b5b5e1cf68 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 d4ef744bab..dd71d20baf 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 18eccbedae..96c783b5ef 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