Skip to content

Commit 60b1318

Browse files
authored
Merge pull request #77 from cybertec-postgresql/regressiondiffs
.github: Show regression.diffs on failures
2 parents 73a07e3 + cc4d614 commit 60b1318

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build-and-check.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,27 @@ jobs:
4444
- name: make test
4545
run: pg_virtualenv ${MAKE_CMD} USE_HEALPIX=${{ matrix.use_healpix }} test
4646

47+
- name: Show test regression.diffs
48+
if: ${{ failure() }}
49+
run: cat regression.diffs
50+
4751
- name: Install pgSphere
4852
run: sudo ${MAKE_CMD} USE_HEALPIX=${{ matrix.use_healpix }} install
4953

5054
- name: make installcheck
5155
run: pg_virtualenv ${MAKE_CMD} USE_HEALPIX=${{ matrix.use_healpix }} installcheck
5256

57+
- name: Show installcheck regression.diffs
58+
if: ${{ failure() }}
59+
run: cat regression.diffs
60+
5361
- name: make crushtest
5462
run: pg_virtualenv ${MAKE_CMD} USE_HEALPIX=${{ matrix.use_healpix }} crushtest
5563

64+
- name: Show crushtest regression.diffs
65+
if: ${{ failure() }}
66+
run: cat regression.diffs
67+
5668
- name: Build docs
5769
run: ${MAKE_CMD} -C doc
5870

0 commit comments

Comments
 (0)