Skip to content

Commit

Permalink
Enable verbose output of make check
Browse files Browse the repository at this point in the history
  • Loading branch information
itchyny authored and nicowilliams committed Jul 22, 2023
1 parent 3ed9289 commit e0e1b22
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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() }}
Expand Down Expand Up @@ -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() }}
Expand Down Expand Up @@ -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() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/oniguruma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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() }}
Expand Down Expand Up @@ -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() }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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() }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e0e1b22

Please sign in to comment.