[SCM] PostGIS branch master updated. 3.6.0rc2-359-geabe42d06
git at osgeo.org
git at osgeo.org
Thu Mar 5 11:39:04 PST 2026
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via eabe42d06e572fedfd6684c1be542e41097e5bc2 (commit)
from 7dfe8b69cde8c683251c9e104d71f3d42e3d5552 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit eabe42d06e572fedfd6684c1be542e41097e5bc2
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Thu Mar 5 23:37:21 2026 +0400
msys: use Windows tmpdir and print regression diffs
diff --git a/.github/workflows/msys.yml b/.github/workflows/msys.yml
index 358775b51..4ae3f6abc 100644
--- a/.github/workflows/msys.yml
+++ b/.github/workflows/msys.yml
@@ -54,4 +54,14 @@ jobs:
MSYSTEM= ./autogen.sh
MSYSTEM= ./configure --with-pgconfig=/${{ matrix.sys }}/bin/pg_config --without-protobuf
MSYSTEM= make
- MSYSTEM= make check
+ MSYSTEM= PGIS_REG_TMPDIR=D:/a/_tmp/pgis_reg make check || {
+ status=$?
+ echo "::group::Regression diffs"
+ for f in /d/a/_tmp/pgis_reg/test_*_diff; do
+ [ -f "$f" ] || continue
+ echo "===== $f ====="
+ sed -n '1,400p' "$f"
+ done
+ echo "::endgroup::"
+ exit "$status"
+ }
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/msys.yml | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list