summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--.github/workflows/oniguruma.yml4
-rw-r--r--.github/workflows/valgrind.yml2
3 files changed, 6 insertions, 6 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() }}